From ca910c02f23322ef5943b57d4d67811ae4faf10d Mon Sep 17 00:00:00 2001 From: Dan Funk Date: Mon, 21 Sep 2020 14:48:53 -0400 Subject: [PATCH] fixing tests --- tests/services/test_ivy_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/services/test_ivy_service.py b/tests/services/test_ivy_service.py index f1af744..b2c950b 100644 --- a/tests/services/test_ivy_service.py +++ b/tests/services/test_ivy_service.py @@ -19,7 +19,7 @@ class IvyServiceTest(BaseTest): def test_invalid_file(self): with self.assertRaises(CommError): - ivy_incorrect_file = os.path.join(app.instance_path, '..', 'tests', 'data', 'incorrect.csv') + ivy_incorrect_file = os.path.join(app.root_path, '..', 'tests', 'data', 'incorrect.csv') IvyService.samples_from_ivy_file(ivy_incorrect_file)