Skip to content

Commit

Permalink
Minor spacing changes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtavis committed Oct 29, 2024
1 parent f250b82 commit dfde819
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/cli/test_convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

class TestConvert(unittest.TestCase):
# MARK: Helper Function

def normalize_line_endings(self, data: str) -> str:
"""
Normalize line endings in a given string.
Expand All @@ -54,6 +55,7 @@ def normalize_line_endings(self, data: str) -> str:
return data.replace("\r\n", "\n").replace("\r", "\n")

# MARK: JSON

@patch("scribe_data.cli.convert.Path", autospec=True)
def test_convert_to_json_empty_language(self, mock_path):
csv_data = "key,value\na,1\nb,2"
Expand Down

0 comments on commit dfde819

Please sign in to comment.