Skip to content

Commit

Permalink
Resolve linting warning due to conflicting variable name 'store' in h…
Browse files Browse the repository at this point in the history
…ashstore test module
  • Loading branch information
doulikecookiedough committed Oct 1, 2024
1 parent a975ea0 commit 5169cd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_hashstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def test_factory_get_hashstore_filehashstore(factory, props):
module_name = "hashstore.filehashstore"
class_name = "FileHashStore"
# These props can be found in tests/conftest.py
store = factory.get_hashstore(module_name, class_name, props)
assert isinstance(store, FileHashStore)
this_store = factory.get_hashstore(module_name, class_name, props)
assert isinstance(this_store, FileHashStore)


def test_factory_get_hashstore_unsupported_class(factory):
Expand Down

0 comments on commit 5169cd4

Please sign in to comment.