Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Hellegouarch <[email protected]>
  • Loading branch information
Lawouach committed Feb 27, 2023
1 parent c7f639b commit 1fa332a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def test_cannot_process_other_than_yaml_and_json(has_conf):
def test_create_node(cl, client, has_conf):
has_conf.return_value = False

meta = {"cluster_name": "somevalue"}
meta = {"name": "somevalue"}

spec = {"external_id": "somemetavalue"}

Expand All @@ -53,7 +53,7 @@ def test_create_node(cl, client, has_conf):
def test_create_node_may_fail(cl, client, has_conf):
has_conf.return_value = False

meta = {"cluster_name": "somevalue"}
meta = {"name": "somevalue"}

spec = {"external_id": "somemetavalue"}

Expand Down

0 comments on commit 1fa332a

Please sign in to comment.