From 3cba48f312d568d3dbf3c75efc1f7863caa10ec7 Mon Sep 17 00:00:00 2001 From: Matt Topol Date: Fri, 28 Mar 2025 15:40:06 -0400 Subject: [PATCH] fix(catalog/rest): fix build --- catalog/rest/rest_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalog/rest/rest_integration_test.go b/catalog/rest/rest_integration_test.go index b68a32f08..c9b57bb19 100644 --- a/catalog/rest/rest_integration_test.go +++ b/catalog/rest/rest_integration_test.go @@ -227,7 +227,7 @@ func (s *RestIntegrationSuite) TestWriteCommitTable() { defer tbl.FS().Remove(pqfile) txn := tbl.NewTransaction() - s.Require().NoError(txn.AddFiles([]string{pqfile}, nil, false)) + s.Require().NoError(txn.AddFiles(s.ctx, []string{pqfile}, nil, false)) updated, err := txn.Commit(s.ctx) s.Require().NoError(err)