Skip to content

Commit

Permalink
fix: support attrs <21.0.0 (#350)
Browse files Browse the repository at this point in the history
Force a patch release for attrs dependency
  • Loading branch information
Noah committed Sep 5, 2020
1 parent 7886c28 commit d327168
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ from syrupy.matchers import path_type
def test_bar(snapshot):
actual = {
"date_created": datetime.now(),
"value": "Some computed value!",
"value": "Some computed value!!",
}
assert actual == snapshot(matcher=path_type({
"date_created": (datetime,),
Expand All @@ -133,7 +133,7 @@ def test_bar(snapshot):
# name: test_bar
<class 'dict'> {
'date_created': <class 'datetime'>,
'value': 'Some computed value!',
'value': 'Some computed value!!',
}
---
```
Expand Down

0 comments on commit d327168

Please sign in to comment.