From 39f8c6225f057e1a2c8b60343292fe4d102b2b89 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 21 Sep 2023 21:18:30 +0200 Subject: [PATCH] gh-108303: Update test_fractions for new Lib/test/mathdata/ --- Lib/test/test_fractions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_fractions.py b/Lib/test/test_fractions.py index 4f4ea7c03f9a4c..499e3b6e656faa 100644 --- a/Lib/test/test_fractions.py +++ b/Lib/test/test_fractions.py @@ -18,7 +18,7 @@ #locate file with float format test values test_dir = os.path.dirname(__file__) or os.curdir -format_testfile = os.path.join(test_dir, 'formatfloat_testcases.txt') +format_testfile = os.path.join(test_dir, 'mathdata', 'formatfloat_testcases.txt') class DummyFloat(object): """Dummy float class for testing comparisons with Fractions"""