From 673005dfbbfd6bb542822c275711072702fc3329 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 26 Feb 2020 20:07:15 +0100 Subject: [PATCH] Fix test class name --- tests/test_revolut_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_revolut_processor.py b/tests/test_revolut_processor.py index b684664..a71b27e 100644 --- a/tests/test_revolut_processor.py +++ b/tests/test_revolut_processor.py @@ -72,7 +72,7 @@ class RevolutProcessorTestCase(unittest.TestCase): self.assertEqual(RevolutLine(line).get_payee(), expected) -class BpvfProcessorTestCase(unittest.TestCase): +class RevolutProcessorTestCase(unittest.TestCase): def test_file_not_found(self): with self.assertRaises(SystemExit): RevolutProcessor("notfound.csv").get_transactions()