Skip to content

Commit

Permalink
Loosen CLI dj.config command checks
Browse files Browse the repository at this point in the history
Config values likely changing while running concurrent tests.
  • Loading branch information
ethho committed Sep 12, 2024
1 parent eb4ee23 commit fe9f149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def test_cli_config():

stdout, stderr = process.communicate()
cleaned = stdout.strip(" >\t\n\r")
assert dj.config == ast.literal_eval(cleaned)
assert dj.config.keys() == ast.literal_eval(cleaned).keys()


def test_cli_args():
Expand Down

0 comments on commit fe9f149

Please sign in to comment.