Skip to content

Commit

Permalink
Fix typos in test names
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles committed Oct 3, 2024
1 parent e73e277 commit e55772d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtime/value/convert/bigint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,12 @@ describe('value/convert/BigInt', () => {
const R = Value.Convert(T, Number.MAX_SAFE_INTEGER)
Assert.IsEqual(R, BigInt(9007199254740991))
})
it('Should convert bigint from number 4', () => {
it('Should convert bigint from number 5', () => {
const T = Type.BigInt()
const R = Value.Convert(T, Number.MAX_SAFE_INTEGER)
Assert.IsEqual(R, BigInt(9007199254740991))
})
it('Should convert bigint from number 5 1', () => {
it('Should convert bigint from number 6', () => {
const T = Type.BigInt()
const R = Value.Convert(T, 123456789012345.6789)
Assert.IsEqual(R, BigInt(123456789012345))
Expand Down

0 comments on commit e55772d

Please sign in to comment.