Skip to content

Commit 9a03e8b

Browse files
committed
linting
1 parent 88cdbe9 commit 9a03e8b

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

server/tests/test_signup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
class MockPreferences:
1010
def db_initialise_preferences(self, username):
11-
print("Mocking preferences class for signup to instantiate properly")
11+
print(f"Mocking preferences")
1212

1313
@pytest.fixture
1414
def test_app():
@@ -19,8 +19,7 @@ def test_app():
1919
app = FastAPI()
2020
logger = logging.getLogger("test_logger")
2121
mock_preferences = MockPreferences()
22-
signup = Signup(api=app, logger=logger,
23-
preferences_logic=mock_preferences) # noqa: F841
22+
signup = Signup(api=app, logger=logger, preferences_logic=mock_preferences) # noqa: F841
2423
return TestClient(app)
2524

2625

0 commit comments

Comments
 (0)