Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 1275dd5

Browse files
authored
fix: Update test to check null qualifiers instead of undefined
1 parent c54a84e commit 1275dd5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/mutation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ describe('Bigtable/Mutation', () => {
458458
const parsed = Mutation.parseColumnName('a');
459459

460460
assert.strictEqual(parsed.family, 'a');
461-
assert.strictEqual(parsed.qualifier, undefined);
461+
assert.strictEqual(parsed.qualifier, null);
462462
});
463463
});
464464

0 commit comments

Comments
 (0)