From aa041a9e6fc3a32213f2ab27ec6478679d712ba8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rg=20Stucke?= <joerg.stucke@fkie.fraunhofer.de>
Date: Thu, 14 Nov 2024 17:41:14 +0100
Subject: [PATCH] ruff hotfix

---
 src/test/integration/storage/test_graphql_interface.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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'