style(widgets): fix typo in a spec comment

This commit is contained in:
Igor Minar 2011-10-31 07:19:33 -07:00
parent 7d0c256ecd
commit 615841a5d3

View file

@ -575,7 +575,7 @@ describe("widget", function() {
$location.path('/bar');
$browser.xhr.expectGET('myUrl2').respond('<div>{{1+1}}</div>');
rootScope.$digest();
$browser.xhr.flush(); // no that we have to requests pending, flush!
$browser.xhr.flush(); // now that we have to requests pending, flush!
expect(rootScope.$element.text()).toEqual('2');
});