Skip to content

Commit

Permalink
fix rename in test
Browse files Browse the repository at this point in the history
  • Loading branch information
thebjorn committed Jan 13, 2025
1 parent cb390a2 commit b692d35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ dist/
tmp/
*.db
*.key
.idea/
.idea/
.coverage
4 changes: 2 additions & 2 deletions tests/serializers/test_command_serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from seeqret import cd
from seeqret.db_utils import debug_fetch_users, debug_secrets
from seeqret.main import cli, user, users, init, list, export, serializers, save
from seeqret.main import cli, user, users, init, list, export, serializers, load
from seeqret.cli_group_add import key
from seeqret.storage.sqlite_storage import SqliteStorage
from tests.clirunner_utils import print_result
Expand Down Expand Up @@ -51,7 +51,7 @@ def test_command_roundtrip():
storage = SqliteStorage()
storage.remove_secrets(key='FOO')

result = runner.invoke(save, output)
result = runner.invoke(load, output)
if result.exit_code != 0: print_result(result)
assert result.exit_code == 0
# print_result(result)
Expand Down

0 comments on commit b692d35

Please sign in to comment.