From c3eb80a18388ee998b3ee822ce747b8c567d2af7 Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Thu, 7 Mar 2024 21:22:24 +0100 Subject: [PATCH] Correct "Number" to "Numeric" in mode_test.go The string representation for the "ModeNumeric" enumeration member was incorrectly labeled as "Number". This has been corrected to "Numeric" in the mode tests file mode_test.go to maintain correct and consistent naming conventions. --- mode_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mode_test.go b/mode_test.go index bf2175f..70f4f37 100644 --- a/mode_test.go +++ b/mode_test.go @@ -87,7 +87,7 @@ func TestMode_String(t *testing.T) { }{ {"ModeHumanReadable", ModeHumanReadable, "Human-readable"}, {"ModeLowerCase", ModeLowerCase, "Lower-case"}, - {"ModeNumeric", ModeNumeric, "Number"}, + {"ModeNumeric", ModeNumeric, "Numeric"}, {"ModeSpecial", ModeSpecial, "Special"}, {"ModeUpperCase", ModeUpperCase, "Upper-case"}, {"ModeUnknown", 255, "Unknown"},