Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
leebyron committed Apr 18, 2016
1 parent 0f88549 commit a15e4ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/Conversion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ describe('Conversion', () => {

it('Explicitly convert values to string using String constructor', () => {
expect(() => {
Immutable.fromJS({foo: core.Symbol('bar')}) + '';
Immutable.Map().set('foo', core.Symbol('bar')) + '';
fromJS({foo: core.Symbol('bar')}) + '';
Map().set('foo', core.Symbol('bar')) + '';
}).not.toThrow();
});

Expand Down

0 comments on commit a15e4ba

Please sign in to comment.