Skip to content

Commit 6102ef3

Browse files
committed
lint fixes
1 parent 7bdad5e commit 6102ef3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/test/client.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ describe('Tests ReactNativeClient', () => {
679679
);
680680
});
681681

682-
test('doesn\'t change infer_ip if the ip_address is set to undefined', () => {
682+
test("doesn't change infer_ip if the ip_address is set to undefined", () => {
683683
client.captureEvent({
684684
user: {
685685
ip_address: undefined,
@@ -698,7 +698,7 @@ describe('Tests ReactNativeClient', () => {
698698
);
699699
});
700700

701-
test('doesn\'t change infer_ip if the user is not set', () => {
701+
test("doesn't change infer_ip if the user is not set", () => {
702702
client.captureEvent({
703703
user: {},
704704
});
@@ -713,7 +713,7 @@ describe('Tests ReactNativeClient', () => {
713713
);
714714
});
715715

716-
test('doesn\'t change infer_ip if the event is empty', () => {
716+
test("doesn't change infer_ip if the event is empty", () => {
717717
client.captureEvent({});
718718

719719
expect(mockTransportSend.mock.calls[0][firstArg][envelopeItems][0][envelopeItemPayload].user).toBeUndefined();

0 commit comments

Comments
 (0)