Skip to content

Commit

Permalink
gh-104683: Rename Lib/test/clinic.test as Lib/test/clinic.test.c (#10…
Browse files Browse the repository at this point in the history
  • Loading branch information
erlend-aasland committed Jul 5, 2023
1 parent ad07568 commit a941bd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
File renamed without changes.
5 changes: 3 additions & 2 deletions Lib/test/test_clinic.py
Expand Up @@ -1089,15 +1089,16 @@ class ClinicExternalTest(TestCase):
maxDiff = None

def test_external(self):
CLINIC_TEST = 'clinic.test.c'
# bpo-42398: Test that the destination file is left unchanged if the
# content does not change. Moreover, check also that the file
# modification time does not change in this case.
source = support.findfile('clinic.test')
source = support.findfile(CLINIC_TEST)
with open(source, 'r', encoding='utf-8') as f:
orig_contents = f.read()

with os_helper.temp_dir() as tmp_dir:
testfile = os.path.join(tmp_dir, 'clinic.test.c')
testfile = os.path.join(tmp_dir, CLINIC_TEST)
with open(testfile, 'w', encoding='utf-8') as f:
f.write(orig_contents)
old_mtime_ns = os.stat(testfile).st_mtime_ns
Expand Down

0 comments on commit a941bd6

Please sign in to comment.