diff --git a/src/test/integration/storage/test_graphql_interface.py b/src/test/integration/storage/test_graphql_interface.py index 51697d00b..593eb6dea 100644 --- a/src/test/integration/storage/test_graphql_interface.py +++ b/src/test/integration/storage/test_graphql_interface.py @@ -39,7 +39,7 @@ def test_graphql_search(backend_db, graphql_interface): assert result == [fw.uid] result, count = graphql_interface.search_gql({'vendor': {'_in': [fw.vendor, 'other_vendor']}}, 'test_firmware') - assert count == 2 # noqa: PLR2004 + assert count == 2 result, count = graphql_interface.search_gql( {'result': {'_contains': {'foo': 'bar'}}, 'plugin': {'_eq': 'plugin_name'}}, 'test_analysis'