Skip to content

Commit

Permalink
Fix unittest for changed output on 'v6 node stop'
Browse files Browse the repository at this point in the history
  • Loading branch information
bartvanb committed Mar 11, 2024
1 parent e0c433d commit 676e0fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vantage6/tests_cli/test_node_cli.py
Expand Up @@ -260,7 +260,9 @@ def test_stop(self, delete_volume, node_context, check_docker, containers):

result = runner.invoke(cli_node_stop, ["--name", "iknl"])

self.assertEqual(result.output, "[info ] - Stopped the iknl Node.\n")
self.assertEqual(
result.output, "[info ] - Stopped the vantage6-iknl-user Node.\n"
)

self.assertEqual(result.exit_code, 0)

Expand Down

0 comments on commit 676e0fd

Please sign in to comment.