diff options
| author | Cody Logan <cody@lokken.dev> | 2023-11-07 12:19:15 -0800 |
|---|---|---|
| committer | Cody Logan <cody@lokken.dev> | 2023-11-07 12:19:15 -0800 |
| commit | 1f4046739a8fe913872a8b17362fe81a81adb581 (patch) | |
| tree | 81f1bae01a5f0f44a08f6f0cab3d471717318f72 /tests/test_file_class.py | |
| parent | 5129ad62392948a033ee988e4093d095f5005c77 (diff) | |
| download | wikiget-1f4046739a8fe913872a8b17362fe81a81adb581.tar.gz wikiget-1f4046739a8fe913872a8b17362fe81a81adb581.zip | |
Fix some pytest style issues
Diffstat (limited to 'tests/test_file_class.py')
| -rw-r--r-- | tests/test_file_class.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_file_class.py b/tests/test_file_class.py index 42f5667..ee25f1c 100644 --- a/tests/test_file_class.py +++ b/tests/test_file_class.py @@ -22,7 +22,7 @@ from wikiget.file import File class TestFileClass: - @pytest.fixture + @pytest.fixture() def file_with_name(self) -> File: """ A File object created with only a name should set its destination property to @@ -39,7 +39,7 @@ class TestFileClass: def test_file_with_name_site(self, file_with_name: File) -> None: assert file_with_name.site == DEFAULT_SITE - @pytest.fixture + @pytest.fixture() def file_with_name_and_dest(self) -> File: """ A File object created with a name and destination should set those properties |
