spell fixes

This commit is contained in:
Nikita Vorontsov 2025-08-28 16:50:04 +03:00
parent 3c0f824ccc
commit 6baf2cbc05
1 changed files with 3 additions and 3 deletions

View File

@ -144,7 +144,7 @@ func TestTableCreateDestroy(t *testing.T) {
t.Fatalf("on Flush: %q", err.Error())
}
LookupMyTable := func() bool {
lookupMyTable := func() bool {
ts, err := c.ListTables()
if err != nil {
t.Fatalf("on ListTables: %q", err.Error())
@ -153,7 +153,7 @@ func TestTableCreateDestroy(t *testing.T) {
return t.Name == filter.Name && t.Family == filter.Family
})
}
if !LookupMyTable() {
if !lookupMyTable() {
t.Fatal("AddTable doesn't create my table!")
}
@ -162,7 +162,7 @@ func TestTableCreateDestroy(t *testing.T) {
t.Fatalf("on Flush: %q", err.Error())
}
if LookupMyTable() {
if lookupMyTable() {
t.Fatal("DestroyTable doesn't delete my table!")
}