We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe9f149 commit 54138c3Copy full SHA for 54138c3
tests/test_cli.py
@@ -62,7 +62,7 @@ def test_cli_config():
62
63
stdout, stderr = process.communicate()
64
cleaned = stdout.strip(" >\t\n\r")
65
- assert dj.config.keys() == ast.literal_eval(cleaned).keys()
+ assert set(dj.config.keys()) == set(ast.literal_eval(cleaned).keys())
66
67
68
def test_cli_args():
0 commit comments