From 28336e7ac832948e88100bea4307a13d6877c974 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 31 Jan 2024 17:20:38 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/conftest.py | 1 + tests/test_find_command_line_interface.py | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index e7d086fb3..bda36c69f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -7,6 +7,7 @@ def testdata(): return str(uuid.uuid4()) + @pytest.fixture def find_filter(): return [ diff --git a/tests/test_find_command_line_interface.py b/tests/test_find_command_line_interface.py index 0243c6f3f..5513d3774 100644 --- a/tests/test_find_command_line_interface.py +++ b/tests/test_find_command_line_interface.py @@ -11,7 +11,6 @@ from signac.filterparse import parse_filter_arg, parse_simple - VALUES = {"1": 1, "1.0": 1.0, "abc": "abc", "true": True, "false": False, "null": None} ARITHMETIC_EXPRESSIONS = [ @@ -39,7 +38,7 @@ class TestFindCommandLineInterface: def _parse(args): with redirect_stderr(StringIO()): return parse_filter_arg(args) - + @pytest.mark.usefixtures("find_filter") def test_interpret_json(self, find_filter): def _assert_equal(q):