Skip to content

Commit

Permalink
Update list of contributors and fix file name
Browse files Browse the repository at this point in the history
  • Loading branch information
olivere committed Apr 12, 2021
1 parent 685abfd commit f3161e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ Pete C [@peteclark-ft](https://github.com/peteclark-ft)
Peter Nagy [@nagypeterjob](https://github.com/nagypeterjob)
Paolo [@ppiccolo](https://github.com/ppiccolo)
Phillip Baker [@phillbaker](https://github.com/phillbaker)
QilingZhao [@qilingzhao](https://github.com/qilingzhao)
Igor Panychek [@panychek](https://github.com/panychek)
Radoslaw Wesolowski [@r--w](https://github.com/r--w)
Rafał Gałus [@rgalus](https://github.com/rgalus)
Expand Down
6 changes: 3 additions & 3 deletions cat_fieldddata_test.go → cat_fielddata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ func TestCatFielddata(t *testing.T) {
}

// check fielddata "message" in response
exist := false
var found bool
for _, fielddata := range res {
if fielddata.Field == "message" {
exist = true
found = true
break
}
}
if !exist {
if !found {
t.Fatal("fielddata message not found")
}

Expand Down

0 comments on commit f3161e2

Please sign in to comment.