summaryrefslogtreecommitdiff
path: root/internal/file/file_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/file/file_test.go')
-rw-r--r--internal/file/file_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/file/file_test.go b/internal/file/file_test.go
index dc59738..a8b6fb2 100644
--- a/internal/file/file_test.go
+++ b/internal/file/file_test.go
@@ -8,7 +8,7 @@ func TestStringValue(t *testing.T) {
var array [128]byte
copy(array[:], "test string")
- if str := stringValue(array[:]); str != "test string" {
+ if str := StringValue(array[:]); str != "test string" {
t.Errorf("epxected 'test string' but got '%s' with bytes '%v'", str, []byte(str))
}
}