Skip to content

Commit

Permalink
lint again
Browse files Browse the repository at this point in the history
  • Loading branch information
mafrahm committed Dec 13, 2024
1 parent 8c85933 commit d496971
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/test_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@ def test_nested_modification(self):
"name": "Alice",
"skills": {
"python": "intermediate",
"sql": "beginner"
}
"sql": "beginner",
},
}
dict2 = {
"name": "Alice",
"skills": {
"python": "advanced",
"sql": "beginner"
}
"sql": "beginner",
},
}
result = gather_dict_diff(dict1, dict2)
expected_output = (
Expand All @@ -76,15 +76,15 @@ def test_nested_addition(self):
dict1 = {
"name": "Alice",
"skills": {
"python": "intermediate"
}
"python": "intermediate",
},
}
dict2 = {
"name": "Alice",
"skills": {
"python": "intermediate",
"docker": "beginner"
}
"docker": "beginner",
},
}
result = gather_dict_diff(dict1, dict2)
expected_output = (
Expand Down

0 comments on commit d496971

Please sign in to comment.