From 96bcd393a153f85ffc9b6e5bd24ec34d5aae6078 Mon Sep 17 00:00:00 2001 From: Istvan Ruzman Date: Mon, 17 Aug 2020 09:31:43 +0200 Subject: [PATCH] Fix: gitignore newlines --- .gitignore | 3 ++- tests/test_dictionary.py | 1 - tests/test_parse_header.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 70c993a..16fd329 100644 --- a/.gitignore +++ b/.gitignore @@ -2,8 +2,9 @@ dist docs/.build/ .mypy_cache +__pycache__ .pytest_cache .tox **egg-info **.pyc -**__pycache__ + diff --git a/tests/test_dictionary.py b/tests/test_dictionary.py index 9a3d744..ed5b9d1 100644 --- a/tests/test_dictionary.py +++ b/tests/test_dictionary.py @@ -409,4 +409,3 @@ def test_get_nonexisting_attributes_from_dictionaries(attribute): dd = Dictionary("", dictionary) with pytest.raises(KeyError): _ = dd[attribute] - diff --git a/tests/test_parse_header.py b/tests/test_parse_header.py index 319a8cd..2b13f55 100644 --- a/tests/test_parse_header.py +++ b/tests/test_parse_header.py @@ -179,4 +179,3 @@ def test_salt_crypt(): # dec = utils.salt_decrypt("secret", authenticator, salt, enc) # assert enc == encrypted # assert plaintext = dec -