Skip to content

Commit b135406

Browse files
committed
Fix property tests on Elixir 1.14
1 parent 38b34e1 commit b135406

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/abit/atomics_property_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defmodule Abit.AtomicsPropertyTest do
77
alias Abit.Atomics
88
alias Abit.Bitmask
99

10-
@min_signed_64 -(1 <<< 63)
10+
@min_signed_64 -1 <<< 63
1111
@max_signed_64 (1 <<< 63) - 1
1212
@max_unsigned_64 (1 <<< 64) - 1
1313

test/abit/bitmask_property_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule Abit.BitmaskPropertyTest do
66

77
alias Abit.Bitmask
88

9-
@min_signed_64 -(1 <<< 63)
9+
@min_signed_64 -1 <<< 63
1010
@max_unsigned_64 (1 <<< 64) - 1
1111

1212
property "64-bit list conversion and population count agree" do

0 commit comments

Comments
 (0)