Skip to content

Commit

Permalink
fix mentor's comments 3
Browse files Browse the repository at this point in the history
  • Loading branch information
DSungatulin committed Mar 5, 2024
1 parent d2fd66c commit a8fd2c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ def test_read_json_file_data():


def test_read_yaml_file():
filepath = 'tests/fixtures/flat_files/file2.yml'
expected_data = {'host': 'hexlet.io', 'timeout': 20, 'verbose': True}
actual_data = read_file_data(filepath)
assert actual_data == expected_data
filepath = 'tests/fixtures/flat_files/file2.yml'
expected_data = {'host': 'hexlet.io', 'timeout': 20, 'verbose': True}
actual_data = read_file_data(filepath)
assert actual_data == expected_data


def test_determine_file_format():
Expand Down

0 comments on commit a8fd2c8

Please sign in to comment.