Skip to content

Commit

Permalink
sharding/utils: Fix Lint (#92)
Browse files Browse the repository at this point in the history
Former-commit-id: e93169c
  • Loading branch information
nisdas committed May 16, 2018
1 parent 1540df8 commit 0ccbdb8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sharding/utils/marshal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ func buildblob(size int64) []interface{} {

}
func TestConvertInterface(t *testing.T) {
var slice interface{}
slice = []interface{}{0, 1, 2, 3, 4, 5}
slice := []interface{}{0, 1, 2, 3, 4, 5}
convertedValue, err := ConvertInterface(slice, reflect.Slice)
if err != nil {
t.Fatalf("Error: %v %v", err, convertedValue)
Expand Down

0 comments on commit 0ccbdb8

Please sign in to comment.