Skip to content

Commit addede3

Browse files
authored
Merge pull request #231 from kojix2/fix-172
Fix regression test for Issue #172
2 parents e4b5fbb + 55388ac commit addede3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/bit_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ class BitTest < Test::Unit::TestCase
126126
end
127127

128128
test "flipped matrices > 6x6" do
129-
m = Numo::Int32.zeros(7,7)
129+
m = Numo::Bit.zeros(7,7)
130130
m = m.flipud
131131
m[true, 1] = 1
132132
assert{ m == [[0, 1, 0, 0, 0, 0, 0],

0 commit comments

Comments
 (0)