Skip to content

Commit 1275dd5

Browse files
authoredMay 12, 2023
fix: Update test to check null qualifiers instead of undefined
1 parent c54a84e commit 1275dd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/mutation.ts

+1-1
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)