Skip to content

Commit 6c3f619

Browse files
committed
test(toml): fix path assertion in arbitrary type test
1 parent a34ac2e commit 6c3f619

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_confdantic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class ArbitraryTomlModel(Confdantic):
217217

218218
model.save(str(filepath), comments=False, serialize_unsupported=True)
219219
content = filepath.read_text()
220-
expected_path = base_path.as_posix()
220+
expected_path = str(base_path)
221221
assert f'base_path = "{expected_path}"' in content
222222

223223

0 commit comments

Comments
 (0)