Skip to content

Commit

Permalink
revert: "fix: Update test to check null qualifiers instead of undefined"
Browse files Browse the repository at this point in the history
This reverts commit 1275dd5.
  • Loading branch information
KDB223 committed May 17, 2023
1 parent 4a8f4c3 commit 39fdf60
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, null);
assert.strictEqual(parsed.qualifier, undefined);
});
});

Expand Down

0 comments on commit 39fdf60

Please sign in to comment.