Skip to content

Commit 6dde9b1

Browse files
committed
Fixing tests
1 parent b23c2a9 commit 6dde9b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/e2e/scenarios.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("my app", function() {
1818

1919
it("should support binding through model", function () {
2020
//set value to the input, which represents the model
21-
util.executeScript("$('#gridmodel input[ng-model=\'product.ProductName\']:eq(0)').val('test').trigger('input')");
21+
util.executeScript("$('#gridmodel input[ng-model=\"product.ProductName\"]:eq(0)').val('test').trigger('input')");
2222
var cellText = util.getResult("$('#grid1').igGrid('getCellText', 1, 'ProductName')");
2323
expect(cellText).toBe("test");
2424
});
@@ -27,7 +27,7 @@ describe("my app", function() {
2727
util.executeScript("$('#grid1').igGridUpdating('setCellValue', 1, 'ProductName', 'Headlights');");
2828
//API requires calling $apply to the scope
2929
util.executeScript("angular.element('#grid1').scope().$apply();");
30-
expect(util.getResult("$('input[ng-model=\'product.ProductName\']:first').val()")).toBe("Headlights");
30+
expect(util.getResult("$('input[ng-model=\"product.ProductName\"]:first').val()")).toBe("Headlights");
3131
});
3232

3333
it("should update view when the scope is directly edited", function() {

0 commit comments

Comments
 (0)