diff --git a/js/ext/angular/test/directive/ionicRefresher.unit.js b/js/ext/angular/test/directive/ionicRefresher.unit.js index ece2ccfbf8..9c14abd07c 100644 --- a/js/ext/angular/test/directive/ionicRefresher.unit.js +++ b/js/ext/angular/test/directive/ionicRefresher.unit.js @@ -92,11 +92,11 @@ describe('ionRefresher directive', function() { }); it('should allow pullingText', function() { var el = setup('pulling-text="{{2+2}} some text"'); - expect(el[0].querySelector('.pulling-text').innerHTML).toBe('4 some text'); + expect(el[0].querySelector('.text-pulling').innerHTML).toBe('4 some text'); }); it('should allow refreshingText', function() { var el = setup('refreshing-text="{{3+2}} text"'); - expect(el[0].querySelector('.refreshing-text').innerHTML).toBe('5 text'); + expect(el[0].querySelector('.text-refreshing').innerHTML).toBe('5 text'); }); });