From 850f675e90549d2e692b555c38f291a8a21dd78c Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 14 Jan 2024 12:08:49 -0800 Subject: [PATCH] One missing place for the new message --- src/documents/tests/test_classifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/documents/tests/test_classifier.py b/src/documents/tests/test_classifier.py index d4e595365..cb1c5c8a3 100644 --- a/src/documents/tests/test_classifier.py +++ b/src/documents/tests/test_classifier.py @@ -650,7 +650,7 @@ class TestClassifier(DirectoriesMixin, TestCase): Path(settings.MODEL_FILE).touch() self.assertTrue(os.path.exists(settings.MODEL_FILE)) - load.side_effect = IncompatibleClassifierVersionError() + load.side_effect = IncompatibleClassifierVersionError("Dummey Error") self.assertIsNone(load_classifier()) self.assertFalse(os.path.exists(settings.MODEL_FILE))