mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
refix a lint
Another test change made an `err :=` fail because it's no longer declaring a new variable, but another one needed the :. Or a patch applied incorrectly. It is a mystery.
This commit is contained in:
parent
578ac76011
commit
ae17fcef7e
1 changed files with 2 additions and 2 deletions
|
|
@ -900,7 +900,7 @@ func TestClusterExhaustingConnections(t *testing.T) {
|
|||
return nil
|
||||
})
|
||||
}
|
||||
err = eg.Wait()
|
||||
err := eg.Wait()
|
||||
if err != nil {
|
||||
t.Fatalf("setting lots of shards: %v", err)
|
||||
}
|
||||
|
|
@ -955,7 +955,7 @@ func TestClusterExhaustingConnectionsImport(t *testing.T) {
|
|||
return nil
|
||||
})
|
||||
}
|
||||
err := eg.Wait()
|
||||
err = eg.Wait()
|
||||
if err != nil {
|
||||
t.Fatalf("setting lots of shards: %v", err)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue