From 269a86360bcf4032f437f78f7b7844e0aa4de882 Mon Sep 17 00:00:00 2001 From: Dustin Sallings Date: Mon, 9 Jan 2023 20:18:09 -1000 Subject: [PATCH] Fix TestVeryVeryBigBytes --- bigbytes_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bigbytes_test.go b/bigbytes_test.go index b191d78..b613a73 100644 --- a/bigbytes_test.go +++ b/bigbytes_test.go @@ -161,12 +161,12 @@ func TestVeryBigBytes(t *testing.T) { func TestVeryVeryBigBytes(t *testing.T) { b, _ := (&big.Int{}).SetString("16093220510709943573688614912", 10) s := BigBytes(b) - if s != "16093 YB" { - t.Errorf("Expected 16093 YB, got %v", s) + if s != "16 RB" { + t.Errorf("Expected 16 RB, got %v", s) } s = BigIBytes(b) - if s != "13312 YiB" { - t.Errorf("Expected 13312 YiB, got %v", s) + if s != "13 RiB" { + t.Errorf("Expected 13 RiB, got %v", s) } }