Skip to content

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardomurri committed Oct 8, 2019
1 parent e84d452 commit 7b17c31
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_config_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
'boot_disk_type': 'pd-standard',
'node_name': 'my-node',
'scheduling': 'preemptible',
'tags': 'tag1,tag2,tag3'
'tags': 'tag1,tag2,tag3',
},
'wrong_example_google': {
'cloud': 'wrongle',
Expand Down Expand Up @@ -444,7 +444,7 @@
'boot_disk_type': 'pd-standard',
'node_name': 'my-node',
'scheduling': 'preemptible',
'tags': 'tag1,tag2,tag3'
'tags': 'tag1,tag2,tag3',
},
'wrong_example_google': {
'cloud': 'wrongle',
Expand Down Expand Up @@ -549,4 +549,4 @@ def test_build_node_section_google():
assert nodes_cfg['misc']['boot_disk_type'] == 'pd-standard'
assert nodes_cfg['misc']['scheduling'] == "preemptible"
assert nodes_cfg['misc']['node_name'] == "my-node"
assert 'tags' not in nodes_cfg['misc']
assert nodes_cfg['misc']['tags'] == "tag1,tag2,tag3"

0 comments on commit 7b17c31

Please sign in to comment.