summaryrefslogtreecommitdiffstats
path: root/coords_test.go
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2019-12-03 17:16:13 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2019-12-03 17:16:13 +0000
commitbf2456f380a7d21677d0c0cf116cc2cbb37bcc14 (patch)
tree1052f50ad2951feeee268f5df8fc5f0cfe894ae6 /coords_test.go
parent30d510fc62ed7aec90820835926a784744c51d7f (diff)
temp switch back to exported colstream
Diffstat (limited to '')
-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)
}
}