Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ritz078 committed Apr 18, 2016
1 parent 90ce5c4 commit 555f103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/ui/__tests__/foldable.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ describe('<Foldable />', function () {
args: 'things',
};

const compactString = '{"name":"test action","args":"things"}';
const compactString = '{name:"test action",args:"things"}';

const wrap = mount(<Foldable action={data} />);
const content = wrap.ref('foldable-content');
Expand All @@ -25,7 +25,7 @@ describe('<Foldable />', function () {
args: 'things',
};

const fullString = '{\n "name": "test action",\n "args": "things"\n}';
const fullString = '{\n name: "test action",\n args: "things"\n}';

const wrap = mount(<Foldable action={data} />);
const toggle = wrap.ref('foldable-toggle');
Expand Down

0 comments on commit 555f103

Please sign in to comment.