diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-07-27 08:20:15 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-07-27 08:20:24 +0100 |
commit | 4ab499deb3955c6bfcce48d2f3eb36ef23836d71 (patch) | |
tree | 6e5be301d66071e6ff0f41bb0a1e5c5fcea7a8d6 /pkg/datamaps/reader_test.go | |
parent | 7d62c9811c2f4a8af3eddd53da730973107e5900 (diff) |
now we find xlsm files as well seemingly
Diffstat (limited to 'pkg/datamaps/reader_test.go')
-rw-r--r-- | pkg/datamaps/reader_test.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkg/datamaps/reader_test.go b/pkg/datamaps/reader_test.go index abe5afc..32e7f67 100644 --- a/pkg/datamaps/reader_test.go +++ b/pkg/datamaps/reader_test.go @@ -231,9 +231,12 @@ func TestGetTargetFiles(t *testing.T) { }{ {"Get files in testdata", args{"./testdata/"}, - []string{"testdata/test_template.xlsx", + []string{ + "testdata/test_template.xlsm", + "testdata/test_template.xlsx", "testdata/test_template2.xlsx", - "testdata/test_template3.xlsx"}, + "testdata/test_template3.xlsx", + }, false, }, } |