Skip to content

Commit

Permalink
Fixed race
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Feb 28, 2022
1 parent 24a186d commit 25e5266
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kusto/data/table/from_kusto_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ func TestFieldsConvert(t *testing.T) {
ty := reflect.TypeOf(test.ptrStruct)
v := reflect.ValueOf(test.ptrStruct)
for _, column := range test.columns {
err = fields.convert(column, test.k, ty, v)
err := fields.convert(column, test.k, ty, v)
if test.err {
assert.Error(t, err)
} else {
Expand Down

0 comments on commit 25e5266

Please sign in to comment.