Skip to content

Commit 292c0bb

Browse files
committed
1 parent f2933f3 commit 292c0bb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/tests/units/series-test.r3

+4-3
Original file line numberDiff line numberDiff line change
@@ -2036,11 +2036,11 @@ Rebol [
20362036
;@@ https://github.com/Oldes/Rebol-issues/issues/1013
20372037
--assert #{0102} and #{00FF} == #{0002}
20382038
--assert #{0102} and #{0300} == #{0100}
2039-
--assert #{0102} and #{03} == #{0100}
2039+
--assert #{0101} and #{03} == #{0101} ; the shorter arg is now used repeatadly!
20402040
--test-- "binary OR binary"
20412041
--assert #{0102} or #{00FF} == #{01FF}
20422042
--assert #{0102} or #{0300} == #{0302}
2043-
--assert #{0102} or #{03} == #{0302}
2043+
--assert #{0101} or #{03} == #{0303} ; the shorter arg is now used repeatadly!
20442044

20452045
===end-group===
20462046

@@ -2336,7 +2336,8 @@ Rebol [
23362336
===end-group===
23372337

23382338

2339-
===start-group=== "Bitwise operations on binary"
2339+
===start-group=== "Bitwise operations on binary"
2340+
;@@ https://github.com/Oldes/Rebol-issues/issues/1013
23402341
bin1: #{DEADBEAFF00D}
23412342
bin2: #{BEAF}
23422343
--test-- "AND on binary"

0 commit comments

Comments
 (0)