Skip to content

Commit 5dd9490

Browse files
Update Lib/test/test_dbm_sqlite3.py
Co-authored-by: Serhiy Storchaka <[email protected]>
1 parent 7760c0c commit 5dd9490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_dbm_sqlite3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def test_readonly_dir_write(self):
125125
with dbm_sqlite3.open(self.db_path, "w") as db:
126126
try:
127127
db[b"newkey"] = b"newvalue"
128-
modified = True
128+
modified = True # on Windows and macOS
129129
except dbm_sqlite3.error:
130130
modified = False
131131
with dbm_sqlite3.open(self.db_path, "r") as db:

0 commit comments

Comments
 (0)