Skip to content

Commit f76b823

Browse files
committed
Fix another two typos
1 parent e14193d commit f76b823

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_msvcrt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,12 +127,12 @@ def test_set_error_mode(self):
127127
old = msvcrt.set_error_mode(msvcrt.OUT_TO_STDERR)
128128
msvcrt.set_error_mode(old)
129129

130-
@unittest.skipUnless(Py_DEBUG, "only avialable under debug build")
130+
@unittest.skipUnless(Py_DEBUG, "only available under debug build")
131131
def test_CrtSetReportMode(self):
132132
old = msvcrt.CrtSetReportMode(msvcrt.CRT_WARN, msvcrt.CRTDBG_MODE_DEBUG)
133133
msvcrt.CrtSetReportMode(msvcrt.CRT_WARN, old)
134134

135-
@unittest.skipUnless(Py_DEBUG, "only avialable under debug build")
135+
@unittest.skipUnless(Py_DEBUG, "only available under debug build")
136136
def test_CrtSetReportFile(self):
137137
old = msvcrt.CrtSetReportFile(msvcrt.CRT_WARN, sys.stdout.fileno())
138138
msvcrt.CrtSetReportFile(msvcrt.CRT_WARN, old)

0 commit comments

Comments
 (0)