diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2021-05-03 15:27:59 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2021-05-03 15:27:59 +0100 |
commit | 52141a21aac3ed1c9d9ff51028121c65efd35181 (patch) | |
tree | 279620b4c3f84e38aa5622e57a121d33e9a534aa | |
parent | 0c1ad94694a90a2dc4ea9018ceaa2ab5658a5c39 (diff) |
fixed failing test by swapping logic
-rw-r--r-- | datamaps/tests/test_cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datamaps/tests/test_cli.py b/datamaps/tests/test_cli.py index abad923..2e6ace2 100644 --- a/datamaps/tests/test_cli.py +++ b/datamaps/tests/test_cli.py @@ -157,7 +157,7 @@ def test_export_with_alternative_datamap_not_csv(mock_config, resource_dir, capl else: assert ( "Reading datamap /tmp/Documents/datamaps/input/datamap_alternate.csv" - in [x[2] for x in caplog.record_tuples] + not in [x[2] for x in caplog.record_tuples] ) |