Skip to content

Commit

Permalink
TST: Fix path in test for Windows
Browse files Browse the repository at this point in the history
skipci
  • Loading branch information
cortadocodes committed Jan 9, 2024
1 parent 04364f2 commit bbcdb64
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ class MockOpenForConfigurationFiles(MockOpen):
project_name="a-project-name",
)

self.assertEqual(mock_constructor.call_args.kwargs["service_configuration"].app_source_path, "/path/to/app_dir")
self.assertTrue(
mock_constructor.call_args.kwargs["service_configuration"].app_source_path.endswith("path/to/app_dir")
)
self.assertTrue(
mock_constructor.call_args.kwargs["service_configuration"].twine_path.endswith("path/to/twine.json")
)
Expand Down

0 comments on commit bbcdb64

Please sign in to comment.