Skip to content

Commit

Permalink
fix get test
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Aug 20, 2016
1 parent c427747 commit 32c52a9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test-occurrences-get.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@

def test_get():
"occurrences.get - basic test"
res = occurrences.get(key = 252408386)
res = occurrences.get(key = 1248387548)
assert 'dict' == res.__class__.__name__
assert len(res) > 30
assert 252408386 == res['key']
assert 1248387548 == res['key']

def test_get_verbatim():
"occurrences.get_verbatim - basic test"
res = occurrences.get_verbatim(key = 252408386)
res = occurrences.get_verbatim(key = 1248387548)
assert 'dict' == res.__class__.__name__
assert 24 == len(res)
assert 252408386 == res['key']
assert len(res) > 20
assert 1248387548 == res['key']

def test_get_fragment():
"occurrences.get_fragment - basic test"
Expand Down

0 comments on commit 32c52a9

Please sign in to comment.