Skip to content

Commit 7c40e61

Browse files
committed
test
1 parent d8d8676 commit 7c40e61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/interpolate.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ describe('interpolate', () => {
125125

126126
const i11nFn = (t: number) => interpolate.projection(Globe, Mercator, t);
127127
expect(i11nFn(0.5)).toBeInstanceOf(ProjectionTransition);
128-
expect(i11nFn(0.5)).toEqual(new ProjectionTransition(Globe, Mercator, 0.5));
128+
expect(i11nFn(0.5).toString()).toBe('["globe-to-mercator", 0.5]');
129129
});
130130

131131
describe('interpolate variableAnchorOffsetCollection', () => {

0 commit comments

Comments
 (0)