Skip to content

Commit 0f0ecf9

Browse files
committed
Change "doesn't" to "doesnt" in test strings in order to use single quotes. Code formatter automatically converts strings containing \' to use double quotes.
1 parent ece4315 commit 0f0ecf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/performance/src/resources/trace.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,13 +117,13 @@ describe('Firebase Performance > trace', () => {
117117
expect(trace.getMetric('cacheHits')).to.eql(600);
118118
});
119119

120-
it("throws error if metric doesn't exist and has invalid name", () => {
120+
it('throws error if metric doesnt exist and has invalid name', () => {
121121
expect(() => trace.incrementMetric('_invalidMetric', 1)).to.throw();
122122
});
123123
});
124124

125125
describe('#putMetric', () => {
126-
it("creates new metric if one doesn't exist and has valid name.", () => {
126+
it('creates new metric if one doesnt exist and has valid name.', () => {
127127
trace.putMetric('cacheHits', 200);
128128

129129
expect(trace.getMetric('cacheHits')).to.eql(200);
@@ -136,7 +136,7 @@ describe('Firebase Performance > trace', () => {
136136
expect(trace.getMetric('cacheHits')).to.eql(400);
137137
});
138138

139-
it("throws error if metric doesn't exist and has invalid name", () => {
139+
it('throws error if metric doesnt exist and has invalid name', () => {
140140
expect(() => trace.putMetric('_invalidMetric', 1)).to.throw();
141141
});
142142
});

0 commit comments

Comments
 (0)