Skip to content

Commit 3c0e994

Browse files
committed
Backticks to quotes.
1 parent 16e4eb4 commit 3c0e994

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tracing/test/integrations/apollo.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ describe('setupOnce', () => {
8181
jest.spyOn(childSpan, 'finish');
8282
});
8383

84-
it(`should wrap a simple resolver`, () => {
84+
it('should wrap a simple resolver', () => {
8585
ApolloServer.config.resolvers[0]?.['Query']?.['res_1']?.();
8686
expect(scope.getSpan).toBeCalled();
8787
expect(parentSpan.startChild).toBeCalledWith({
@@ -92,7 +92,7 @@ describe('setupOnce', () => {
9292
expect(scope.setSpan).toHaveBeenCalledTimes(2);
9393
});
9494

95-
it(`should wrap another simple resolver`, () => {
95+
it('should wrap another simple resolver', () => {
9696
ApolloServer.config.resolvers[0]?.['Mutation']?.['res_2']?.();
9797
expect(scope.getSpan).toBeCalled();
9898
expect(parentSpan.startChild).toBeCalledWith({

0 commit comments

Comments
 (0)