diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-23 20:43:25 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-23 20:43:25 -0700 |
commit | 7b54c0ddea077d1d35c9a7945b73923dbc3288ec (patch) | |
tree | 53a144f76ccbbc80278962f23c3863580d7c4532 /tests | |
parent | 9591f16d2a4be407768f129d08144b1c1bbf345d (diff) | |
download | fatcat-7b54c0ddea077d1d35c9a7945b73923dbc3288ec.tar.gz fatcat-7b54c0ddea077d1d35c9a7945b73923dbc3288ec.zip |
edit_group -> editgroup
Diffstat (limited to 'tests')
-rw-r--r-- | tests/api.py | 2 | ||||
-rw-r--r-- | tests/test_fixtures.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/api.py b/tests/api.py index 5fff779e..7e487f17 100644 --- a/tests/api.py +++ b/tests/api.py @@ -207,7 +207,7 @@ def test_api_rich_create(app): # test that editor's active edit group is now invalid editor = Editor.query.first() - assert editor.active_edit_group == None + assert editor.active_editgroup == None def test_api_release_lookup(rich_app): app = rich_app diff --git a/tests/test_fixtures.py b/tests/test_fixtures.py index 2ced3bb5..0a0d3176 100644 --- a/tests/test_fixtures.py +++ b/tests/test_fixtures.py @@ -26,4 +26,4 @@ def test_rich_app_fixture(rich_app): # test that editor's active edit group is now invalid editor = Editor.query.first() - assert editor.active_edit_group == None + assert editor.active_editgroup == None |