Skip to content

Commit 269a863

Browse files
committed
Fix TestVeryVeryBigBytes
1 parent 463a095 commit 269a863

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bigbytes_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ func TestVeryBigBytes(t *testing.T) {
161161
func TestVeryVeryBigBytes(t *testing.T) {
162162
b, _ := (&big.Int{}).SetString("16093220510709943573688614912", 10)
163163
s := BigBytes(b)
164-
if s != "16093 YB" {
165-
t.Errorf("Expected 16093 YB, got %v", s)
164+
if s != "16 RB" {
165+
t.Errorf("Expected 16 RB, got %v", s)
166166
}
167167
s = BigIBytes(b)
168-
if s != "13312 YiB" {
169-
t.Errorf("Expected 13312 YiB, got %v", s)
168+
if s != "13 RiB" {
169+
t.Errorf("Expected 13 RiB, got %v", s)
170170
}
171171
}
172172

0 commit comments

Comments
 (0)