From 400c04d9e04324011cfd8a443f00808842356e8f Mon Sep 17 00:00:00 2001 From: James Douglass Date: Tue, 9 Apr 2024 13:57:33 -0700 Subject: [PATCH] Correcting a test method name. RE:#1425 --- tests/test_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 4ebfdecab6..6025e699b6 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -1199,7 +1199,7 @@ def test_os_path_normalization_linux(self): relative_to = os.path.join(self.workspace_dir, 'test.csv') expected_path = os.path.join(self.workspace_dir, "foo/bar.shp") path = utils.expand_path(rel_path, relative_to) - self.assertEquals(path, expected_path) + self.assertEqual(path, expected_path) @unittest.skipIf(platform.system() != 'Windows', "Function behavior differs across systems.") @@ -1213,7 +1213,7 @@ def test_os_path_normalization_windows(self): relative_to = os.path.join(self.workspace_dir, 'test.csv') expected_path = os.path.join(self.workspace_dir, "foo\\bar.shp") path = utils.expand_path(rel_path, relative_to) - self.assertEquals(path, expected_path) + self.assertEqual(path, expected_path) def test_falsey(self): """Utils: test return None when falsey."""