Skip to content

Commit

Permalink
fixup traceback test
Browse files Browse the repository at this point in the history
  • Loading branch information
saturnboy committed Oct 21, 2019
1 parent 8ff274c commit 4b424fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ def test_traceback():
assert_that(frames[0][1]).is_equal_to('test_traceback')
assert_that(frames[0][2]).is_equal_to(35)

assert_that(frames[1][0]).ends_with('assertpy.py')
assert_that(frames[1][0]).ends_with('base.py')
assert_that(frames[1][1]).is_equal_to('is_equal_to')
assert_that(frames[1][2]).is_greater_than(160)
assert_that(frames[1][2]).is_greater_than(40)

assert_that(frames[2][0]).ends_with('assertpy.py')
assert_that(frames[2][1]).is_equal_to('_err')
assert_that(frames[2][2]).is_greater_than(1000)
assert_that(frames[2][2]).is_greater_than(100)

0 comments on commit 4b424fa

Please sign in to comment.