diff options
| author | Erlend E. Aasland <erlend@python.org> | 2023-12-27 23:20:57 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-27 23:20:57 (GMT) |
| commit | 7ab9efdd6a2fb21cddca1ccd70175f1ac6bd9168 (patch) | |
| tree | a7e125a89887d2780615430fcd50733bfdd70722 /Lib/test | |
| parent | 87295b4068762f9cbdfcae5fed5ff54aadd3cb62 (diff) | |
| download | cpython-7ab9efdd6a2fb21cddca1ccd70175f1ac6bd9168.zip cpython-7ab9efdd6a2fb21cddca1ccd70175f1ac6bd9168.tar.gz cpython-7ab9efdd6a2fb21cddca1ccd70175f1ac6bd9168.tar.bz2 | |
gh-113299: Move cpp.py into libclinic (#113526)
Diffstat (limited to 'Lib/test')
| -rw-r--r-- | Lib/test/test_clinic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_clinic.py b/Lib/test/test_clinic.py index 3d6816d..7323bdd 100644 --- a/Lib/test/test_clinic.py +++ b/Lib/test/test_clinic.py @@ -3920,7 +3920,7 @@ class ClinicReprTests(unittest.TestCase): self.assertEqual(repr(parameter), "<clinic.Parameter 'bar'>") def test_Monitor_repr(self): - monitor = clinic.cpp.Monitor("test.c") + monitor = libclinic.cpp.Monitor("test.c") self.assertRegex(repr(monitor), r"<clinic.Monitor \d+ line=0 condition=''>") monitor.line_number = 42 |
