diff options
author | davidborry <davidborryfr@gmail.com> | 2022-08-27 09:16:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-28 00:16:41 +0800 |
commit | bef49e40eec508a6413e80ee5df7df52f7827424 (patch) | |
tree | d71fcc5d3abef6f8943e3fc2f75fe9dd796d94fd /adjust_test.go | |
parent | f8667386dcde788d8232b652ac85a138c0d20bf3 (diff) |
This closes #1330 update non existing sheet error messages (#1331)
Diffstat (limited to 'adjust_test.go')
-rw-r--r-- | adjust_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/adjust_test.go b/adjust_test.go index 1d80705..c350101 100644 --- a/adjust_test.go +++ b/adjust_test.go @@ -339,7 +339,7 @@ func TestAdjustHelper(t *testing.T) { assert.EqualError(t, f.adjustHelper("Sheet1", rows, 0, 0), newCellNameToCoordinatesError("A", newInvalidCellNameError("A")).Error()) assert.EqualError(t, f.adjustHelper("Sheet2", rows, 0, 0), newCellNameToCoordinatesError("B", newInvalidCellNameError("B")).Error()) // Test adjustHelper on not exists worksheet. - assert.EqualError(t, f.adjustHelper("SheetN", rows, 0, 0), "sheet SheetN is not exist") + assert.EqualError(t, f.adjustHelper("SheetN", rows, 0, 0), "sheet SheetN does not exist") } func TestAdjustCalcChain(t *testing.T) { |