Skip to content

Commit

Permalink
fixed test case
Browse files Browse the repository at this point in the history
  • Loading branch information
eneufeld committed Apr 29, 2016
1 parent 2865d46 commit 338b56f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/renderers/layouts/vertical/vertical.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ describe('VerticalLayout', () => {
scope.data = { "name": "John Doe "};
let el = $compile('<jsonforms schema="schema" ui-schema="uiSchema" data="data"/>')(scope);
scope.$digest();
let div = el.find('div');
let layout = angular.element(div.children()[0]);
let layout = el.find('div');
expect(layout.hasClass('jsf-vertical-layout')).toBeTruthy();
}));
});
});

0 comments on commit 338b56f

Please sign in to comment.