summaryrefslogtreecommitdiffstats
path: root/coords_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'coords_test.go')
-rw-r--r--coords_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/coords_test.go b/coords_test.go
index 8f8f865..8244a85 100644
--- a/coords_test.go
+++ b/coords_test.go
@@ -5,12 +5,12 @@ import (
)
func TestAlphaStream(t *testing.T) {
- if colstream[26] != "AA" {
- t.Errorf("The test expected AA, got %v.", colstream[26])
+ if Colstream[26] != "AA" {
+ t.Errorf("The test expected AA, got %v.", Colstream[26])
}
- if len(colstream) > maxCols {
+ if len(Colstream) > maxCols {
t.Errorf(`Number of columns in alphastream exceeds Excel maximum.
- alphastream contains %d, maxCols is %d`, len(colstream), maxCols)
+ alphastream contains %d, maxCols is %d`, len(Colstream), maxCols)
}
}