Missing semi-colons

This commit is contained in:
Vojta Jina 2011-06-13 18:38:11 +02:00
parent 07951a6a80
commit f46a6d728f

View File

@ -19,7 +19,7 @@ describe('my app', function() {
it('should render view1 when user navigates to /view1', function() { it('should render view1 when user navigates to /view1', function() {
expect(element('ng\\:view p:first').text()). expect(element('ng\\:view p:first').text()).
toMatch(/partial for view 1/) toMatch(/partial for view 1/);
}); });
}); });
@ -34,7 +34,7 @@ describe('my app', function() {
it('should render view1 when user navigates to /view2', function() { it('should render view1 when user navigates to /view2', function() {
expect(element('ng\\:view p:first').text()). expect(element('ng\\:view p:first').text()).
toMatch(/partial for view 2/) toMatch(/partial for view 2/);
}); });
}); });