Skip to content

Commit

Permalink
Remove no longet valid test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
kleesc committed Jan 24, 2020
1 parent 0bb3662 commit d0f4531
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions data/test/test_encryption.py
Expand Up @@ -27,11 +27,9 @@
@pytest.mark.parametrize(
"secret_key",
[
"test1234",
"test1234",
"thisisanothercoolsecretkeyhere",
"107383705745765174750346070528443780244192102846031525796571939503548634055845",
bytes("test1234"),
],
)
@pytest.mark.parametrize("use_valid_key", [True, False,])
Expand All @@ -58,12 +56,12 @@ def test_encryption(test_data, version, secret_key, use_valid_key):
("test1234", "v0$$iE+87Qefu/2i+5zC87nlUtOskypk8MUUDS/QZPs=", ""),
("test1234", "v0$$XTxqlz/Kw8s9WKw+GaSvXFEKgpO/a2cGNhvnozzkaUh4C+FgHqZqnA==", "hello world"),
(
bytes("test1234"),
"test1234",
"v0$$9LadVsSvfAr9r1OvghSYcJqrJpv46t+U6NgLKrcFY6y2bQsASIN36g==",
"hello world",
),
(
bytes("\1\2\3\4\5\6"),
"\1\2\3\4\5\6",
"v0$$2wwWX8IhUYzuh4cyMgSXF3MEVDlEhrf0CNimTghlHgCuK6E4+bLJb1xJOKxsXMs=",
"hello world, again",
),
Expand Down

0 comments on commit d0f4531

Please sign in to comment.