Skip to content

Commit 1a8ec2c

Browse files
committed
fix type errors in core tests
1 parent df22f58 commit 1a8ec2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/test/lib/base.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ describe('BaseClient', () => {
6868
expect.assertions(1);
6969

7070
const client = new TestClient({ dsn: PUBLIC_DSN });
71-
expect(dsnToString(client.getDsn())).toBe(PUBLIC_DSN);
71+
expect(dsnToString(client.getDsn()!)).toBe(PUBLIC_DSN);
7272
});
7373

7474
test('allows missing Dsn', () => {

0 commit comments

Comments
 (0)