Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions google/cloud/bigtable/tests/data_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -578,10 +578,12 @@ TEST_F(DataIntegrationTest, TableApplyWithLogging) {
auto const table_id = testing::TableTestEnvironment::table_id();

// Make a `Table` with an implementation that depends on the test's value
// parameter.
auto make_table = [&](Options const& options) {
// parameter. Disable metrics to avoid log pollution.
auto make_table = [&](Options options) {
options.set<EnableMetricsOption>(false);
auto conn = MakeDataConnection(
{InstanceResource(Project(project_id()), instance_id())}, options);
{InstanceResource(Project(project_id()), instance_id())},
std::move(options));
return Table(std::move(conn),
TableResource(project_id(), instance_id(), table_id));
};
Expand Down
Loading