Skip to content

Commit 41af199

Browse files
committed
test(NODE-7150): use numeric error code
1 parent f76c392 commit 41af199

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/integration/client-side-encryption/client_side_encryption.prose.17.on_demand_gcp.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ describe('17. On-demand GCP Credentials', () => {
5454
.catch(error => error);
5555
// GaxiosError: Unsuccessful response status code. Request failed with status code 404
5656
expect(error).to.be.instanceOf(Error);
57-
expect(error).property('code', '404');
57+
expect(error).property('code', 404);
5858
}
5959
);
6060

0 commit comments

Comments
 (0)