Skip to content

Commit 6cc61b1

Browse files
committed
Add explicit example.
1 parent 49b6c74 commit 6cc61b1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,8 @@ def test_replace_missing(self):
536536
| st.dictionaries(st.text(string.printable), children))
537537

538538
class RoundtripTests(unittest.TestCase):
539+
@hypothesis.example({}, {u'%20': None})
540+
@hypothesis.example({u'%20': None}, {})
539541
@hypothesis.given(json_st, json_st)
540542
def test_roundtrip(self, src, dst):
541543
patch = jsonpatch.JsonPatch.from_diff(src, dst, False)

0 commit comments

Comments
 (0)