From 8844e462591160f728f7ce941581ac49a39cf0d4 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sat, 26 Jun 2021 18:40:53 -0700 Subject: [PATCH] Removes stray print statement --- bookwyrm/tests/test_postgres.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bookwyrm/tests/test_postgres.py b/bookwyrm/tests/test_postgres.py index 1cdc4e83..93ff264f 100644 --- a/bookwyrm/tests/test_postgres.py +++ b/bookwyrm/tests/test_postgres.py @@ -12,7 +12,6 @@ class PostgresTriggers(TestCase): def test_search_vector_on_create(self, *_): """make sure that search_vector is being set correctly on create""" - print('hello?') book = models.Edition.objects.create(title="The Long Goodbye") book.refresh_from_db() self.assertEqual(book.search_vector, "'goodby':3A 'long':2A")