Skip to content

Commit

Permalink
Bitwise: test exception fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyoshicho committed Jul 4, 2019
1 parent adb1713 commit bd29138
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Bitwise.vimspec
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ Describe Bitwise
if has('num64')
Assert Equals(B.uint64(0x2345678923456789), 0x2345678923456789)
else
Throws /^vital: Vim.Type.Number:/ B.uint64(0)
Throws /^vital: Bitwise:/ B.uint64(0)
endif
End
End
Expand Down Expand Up @@ -408,7 +408,7 @@ Describe Bitwise
End
else
It cast data
Throws /^vital: Vim.Type.Number:/ B.rotate64l(0,0)
Throws /^vital: Bitwise:/ B.rotate64l(0,0)
End
endif
End
Expand All @@ -426,7 +426,7 @@ Describe Bitwise
End
else
It cast data
Throws /^vital: Vim.Type.Number:/ B.rotate64r(0,0)
Throws /^vital: Bitwise:/ B.rotate64r(0,0)
End
endif
End
Expand Down

0 comments on commit bd29138

Please sign in to comment.