Use context.Context in module.Table

Closes #366.
This commit is contained in:
fox.cpp 2021-07-10 13:27:37 +03:00
parent 5c143530ff
commit 6d44617840
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
19 changed files with 61 additions and 42 deletions

View file

@ -21,6 +21,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
package table
import (
"context"
"path/filepath"
"testing"
@ -66,7 +67,7 @@ func TestSQL(t *testing.T) {
check := func(key, res string, ok, fail bool) {
t.Helper()
actualRes, actualOk, err := tbl.Lookup(key)
actualRes, actualOk, err := tbl.Lookup(context.Background(), key)
if actualRes != res {
t.Errorf("Result mismatch: want %s, got %s", res, actualRes)
}