Skip to content

Commit 557e621

Browse files
author
Ben J. Ward
committed
qualified method names in tests
1 parent 4318593 commit 557e621

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ end
6060
end
6161

6262
@testset "masking bits" begin
63-
@test mask(UInt64, 12) == 0x0000000000000fff
64-
@test mask(13) == 0x0000000000001fff
65-
@test mask(UInt16, 9) == 0x01ff
63+
@test Twiddle.mask(UInt64, 12) == 0x0000000000000fff
64+
@test Twiddle.mask(13) == 0x0000000000001fff
65+
@test Twiddle.mask(UInt16, 9) == 0x01ff
6666
end
6767

6868
end

0 commit comments

Comments
 (0)