From ed5821aa21580e7738558f53bfd1e14db72ddfb7 Mon Sep 17 00:00:00 2001
From: Joscha Schmiedt <joscha@schmiedt.dev>
Date: Fri, 5 Apr 2024 22:56:36 +0200
Subject: [PATCH] Fix test broken by autopep8

---
 tests/test_issues_server.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/test_issues_server.py b/tests/test_issues_server.py
index 2922c49..8bedd02 100644
--- a/tests/test_issues_server.py
+++ b/tests/test_issues_server.py
@@ -1291,8 +1291,7 @@ def test_143_white_space(num):
     ]:
         with pytest.raises(TransactionError) as cm:
             db.execute_query(query)
-        assert cm.value.msg == f'You typed "{
-            num}". Empty spaces are not allowed in numbers. Did you mean "{num.replace(" ", "")}"?'
+        assert cm.value.msg == f'You typed "{num}". Empty spaces are not allowed in numbers. Did you mean "{num.replace(" ", "")}"?'
 
 
 def test_144():
-- 
GitLab