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 /calc_test.go | |
parent | f8667386dcde788d8232b652ac85a138c0d20bf3 (diff) |
This closes #1330 update non existing sheet error messages (#1331)
Diffstat (limited to 'calc_test.go')
-rw-r--r-- | calc_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calc_test.go b/calc_test.go index 5822135..ef196dc 100644 --- a/calc_test.go +++ b/calc_test.go @@ -4330,7 +4330,7 @@ func TestCalcCellValue(t *testing.T) { // Test get calculated cell value on not exists worksheet. f = prepareCalcData(cellData) _, err = f.CalcCellValue("SheetN", "A1") - assert.EqualError(t, err, "sheet SheetN is not exist") + assert.EqualError(t, err, "sheet SheetN does not exist") // Test get calculated cell value with not support formula. f = prepareCalcData(cellData) assert.NoError(t, f.SetCellFormula("Sheet1", "A1", "=UNSUPPORT(A1)")) |