Skip to content

Commit

Permalink
satisfy jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
swalters committed Apr 22, 2014
1 parent 2c3fb46 commit ea2bd0f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/unit/core/services/ui-grid-util.spec.js
Expand Up @@ -168,7 +168,7 @@ describe('ui.grid.utilService', function() {

var result;
gridUtil.getTemplate(url).then(function (r) {
result = r
result = r;
});
$httpBackend.flush();

Expand All @@ -179,10 +179,10 @@ describe('ui.grid.utilService', function() {
result = null;
$timeout(function () {
gridUtil.getTemplate(url).then(function (r) {
result = r
result = r;
});
});
$timeout.flush();
$timeout.flush();

$httpBackend.verifyNoOutstandingRequest();
expect(result).toEqual(html);
Expand All @@ -194,7 +194,7 @@ describe('ui.grid.utilService', function() {
var result = null;
$timeout(function () {
gridUtil.getTemplate(html).then(function (r) {
result = r
result = r;
});
});
$timeout.flush();
Expand All @@ -207,7 +207,7 @@ describe('ui.grid.utilService', function() {
var result = null;
$timeout(function () {
gridUtil.getTemplate(promise).then(function (r) {
result = r
result = r;
});
});
$timeout.flush();
Expand Down

0 comments on commit ea2bd0f

Please sign in to comment.