summaryrefslogtreecommitdiffstats
path: root/coords_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'coords_test.go')
-rw-r--r--coords_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/coords_test.go b/coords_test.go
index 8244a85..1d69ef1 100644
--- a/coords_test.go
+++ b/coords_test.go
@@ -66,7 +66,7 @@ func TestCollectLetters(t *testing.T) {
{"AA", 26},
}
for _, c := range cases {
- s, err := ColAlphaToIndex(c.alpha)
+ s, err := colAlphaToIndex(c.alpha)
if err != nil {
t.Fatal(err)
}
@@ -88,7 +88,7 @@ func TestGetColApha(t *testing.T) {
{16377, "XEX"},
}
for _, c := range cases {
- s, err := ColIndexToAlpha(c.index)
+ s, err := colIndexToAlpha(c.index)
if err != nil {
t.Fatal(err)
}