Skip to content

Commit

Permalink
fix: Update test to check null qualifiers instead of undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
KDB223 committed May 12, 2023
1 parent c54a84e commit 1275dd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/mutation.ts
Expand Up @@ -458,7 +458,7 @@ describe('Bigtable/Mutation', () => {
const parsed = Mutation.parseColumnName('a');

assert.strictEqual(parsed.family, 'a');
assert.strictEqual(parsed.qualifier, undefined);
assert.strictEqual(parsed.qualifier, null);
});
});

Expand Down

0 comments on commit 1275dd5

Please sign in to comment.