From 3f30ec554b93896de618316c9c9b8958b7be19e5 Mon Sep 17 00:00:00 2001 From: Sean Stewart Date: Thu, 20 Jun 2024 18:31:09 -0500 Subject: [PATCH] tests: shore up support for windows in tests --- tests/unit/marshal/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/marshal/test_api.py b/tests/unit/marshal/test_api.py index 93b8f0b..1e321ac 100644 --- a/tests/unit/marshal/test_api.py +++ b/tests/unit/marshal/test_api.py @@ -83,7 +83,7 @@ path=dict( given_type=pathlib.Path, given_input=pathlib.Path("/path/to/file"), - expected_output="/path/to/file", + expected_output=str(pathlib.Path("/path/to/file")), ), decimal=dict( given_type=decimal.Decimal,