소스 검색

Correct a few format string issues.

Ed Marshall 7 년 전
부모
커밋
8a3bb0c01c
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      utils/runeint_test.go

+ 4 - 4
utils/runeint_test.go

@@ -4,7 +4,7 @@ import "testing"
 
 
 func Test_RuneToIntIntToRune(t *testing.T) {
 func Test_RuneToIntIntToRune(t *testing.T) {
 	if IntToRune(0) != '0' {
 	if IntToRune(0) != '0' {
-		t.Errorf("failed IntToRune(0) returned %d", string(IntToRune(0)))
+		t.Errorf("failed IntToRune(0) returned %d", IntToRune(0))
 	}
 	}
 	if IntToRune(9) != '9' {
 	if IntToRune(9) != '9' {
 		t.Errorf("failed IntToRune(9) returned %d", IntToRune(9))
 		t.Errorf("failed IntToRune(9) returned %d", IntToRune(9))
@@ -13,12 +13,12 @@ func Test_RuneToIntIntToRune(t *testing.T) {
 		t.Errorf("failed IntToRune(10) returned %d", IntToRune(10))
 		t.Errorf("failed IntToRune(10) returned %d", IntToRune(10))
 	}
 	}
 	if RuneToInt('0') != 0 {
 	if RuneToInt('0') != 0 {
-		t.Error("failed RuneToInt('0') returned %d", RuneToInt(0))
+		t.Errorf("failed RuneToInt('0') returned %d", RuneToInt(0))
 	}
 	}
 	if RuneToInt('9') != 9 {
 	if RuneToInt('9') != 9 {
-		t.Error("failed RuneToInt('9') returned %d", RuneToInt(9))
+		t.Errorf("failed RuneToInt('9') returned %d", RuneToInt(9))
 	}
 	}
 	if RuneToInt('F') != -1 {
 	if RuneToInt('F') != -1 {
-		t.Error("failed RuneToInt('F') returned %d", RuneToInt('F'))
+		t.Errorf("failed RuneToInt('F') returned %d", RuneToInt('F'))
 	}
 	}
 }
 }