Skip to content

Commit

Permalink
flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Nov 2, 2023
1 parent cbc91bd commit 2e8dc6e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test_bundle_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# High-level interfaces
load_table_structures, load_items,
# Low-level implementation
SchemaManager, ItemTools, TableChecker, OptionalTypeHints, ValidationProblem,
SchemaManager, ItemTools, TableChecker, OptionalTypeHints,
BoolHint, NumHint,
# Probably we should test NumHint, TypeHint, EnumHint, RefHint, etc. as well. -kmp 23-Oct-2023
)
Expand Down Expand Up @@ -635,7 +635,8 @@ def get(self, path_url):
old_count = portal_vapp.call_count
with mock.patch.object(ff_utils_module, "get_authentication_with_server",
mock_not_called("get_authentication_with_server")):
actual_items = load_items(SAMPLE_ITEMS_FOR_REAL_SCHEMAS_FILE, tab_name='ExperimentSeq', portal_vapp=portal_vapp)
actual_items = load_items(SAMPLE_ITEMS_FOR_REAL_SCHEMAS_FILE,
tab_name='ExperimentSeq', portal_vapp=portal_vapp)

assert portal_vapp.call_count == old_count + 1
assert actual_items == expected_items
Expand Down

0 comments on commit 2e8dc6e

Please sign in to comment.