Skip to content

Commit

Permalink
Merge pull request #1 from stevenlawton/test-fix
Browse files Browse the repository at this point in the history
fix test
  • Loading branch information
stevenlawton authored Apr 24, 2024
2 parents 5082ae5 + d54a0e6 commit 6985f73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xls/xls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ func TestGetWorkBook(t *testing.T) {
t.Error("Expected 'String 3', got ", c.GetString())
}
case 4:
if c.GetString() != "https://github.com/stevenlawton/xlsReader" {
t.Error("Expected 'https://github.com/stevenlawton/xlsReader', got ", c.GetString())
if c.GetString().contains("/xlsReader") {

Check failure on line 44 in xls/xls_test.go

View workflow job for this annotation

GitHub Actions / build

c.GetString().contains undefined (type string has no field or method contains)
t.Error("Expected '/xlsReader', got ", c.GetString())
}
case 5:
if c.GetString() != "" {
Expand Down

0 comments on commit 6985f73

Please sign in to comment.