Skip to content

Commit 0526612

Browse files
authored
fix: Remove bigtable instances left over when system tests run (#1265)
* Use the prefix from the common file for deleting Instances are not currently being cleaned up by the reap instances function because a filter is not selecting instances based on the right prefix. It looks like this fix should solve the issue. * fix: Use the prefix from the common file for deleting Instances are not currently being cleaned up by the reap instances function because a filter is not selecting instances based on the right prefix. It looks like this fix should solve the issue.
1 parent c80e9f6 commit 0526612

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

system-test/bigtable.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ import {Family} from '../src/family.js';
2525
import {Row} from '../src/row.js';
2626
import {Table} from '../src/table.js';
2727
import {RawFilter} from '../src/filter';
28-
import {generateId} from './common';
29-
30-
const PREFIX = 'gcloud-tests-';
28+
import {generateId, PREFIX} from './common';
3129

3230
describe('Bigtable', () => {
3331
const bigtable = new Bigtable();

0 commit comments

Comments
 (0)