Skip to content

Commit

Permalink
fix path for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
axif0 committed Oct 31, 2024
1 parent e441792 commit e417b72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/test_interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def test_configure_settings_specific_languages(self, mock_rprint, mock_prompt):
self.assertEqual(self.config.selected_languages, ["english", "spanish"])
self.assertEqual(self.config.selected_data_types, ["nouns", "verbs"])
self.assertEqual(self.config.output_type, "csv")
self.assertEqual(str(self.config.output_dir), "/custom/path")
self.assertEqual(self.config.output_dir.as_posix(), "/custom/path")
self.assertFalse(self.config.overwrite)

@patch("scribe_data.cli.interactive.get_data")
Expand Down

0 comments on commit e417b72

Please sign in to comment.