From 1476d123ba2e52a82fd6a0c204e8c54c36379d9f Mon Sep 17 00:00:00 2001 From: Cristopher Hernandez <22552070+CristopherH95@users.noreply.github.com> Date: Sun, 24 Oct 2021 16:25:27 -0700 Subject: [PATCH] Tweak comments --- tests/test_watson/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_watson/tests.py b/tests/test_watson/tests.py index b9682fb..534c1db 100644 --- a/tests/test_watson/tests.py +++ b/tests/test_watson/tests.py @@ -187,8 +187,8 @@ class InternalsTest(SearchTestBase): self.assertEqual(watson.search("fooo1").count(), 1) self.assertEqual(watson.search("fooo2").count(), 1) self.assertEqual(watson.search("fooo3").count(), 1) - # Use raw deletion query to remove record directly from the database (no signals triggered). - # This is so that the cleanup functionality of buildwatson can be tested + # Use raw deletion query to remove record directly from the database (i.e. no signals triggered). + # This is so that the cleanup functionality of buildwatson can be tested. with connection.cursor() as cursor: cursor.execute( 'DELETE FROM ' + WatsonTestModel1._meta.db_table + ' WHERE ' + WatsonTestModel1._meta.pk.name + ' = %s',