aboutsummaryrefslogtreecommitdiffstats
path: root/src/widgets.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets.js')
-rw-r--r--src/widgets.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/widgets.js b/src/widgets.js
index 43a16c8c..3666486d 100644
--- a/src/widgets.js
+++ b/src/widgets.js
@@ -398,15 +398,15 @@ angularWidget('option', function(){
*
* @scenario
* it('should load date filter', function(){
- * expect(element('.example ng\\:include').text()).toMatch(/angular\.filter\.date/);
+ * expect(element('.doc-example ng\\:include').text()).toMatch(/angular\.filter\.date/);
* });
* it('should change to hmtl filter', function(){
* select('url').option('angular.filter.html.html');
- * expect(element('.example ng\\:include').text()).toMatch(/angular\.filter\.html/);
+ * expect(element('.doc-example ng\\:include').text()).toMatch(/angular\.filter\.html/);
* });
* it('should change to blank', function(){
* select('url').option('(blank)');
- * expect(element('.example ng\\:include').text()).toEqual('');
+ * expect(element('.doc-example ng\\:include').text()).toEqual('');
* });
*/
angularWidget('ng:include', function(element){
@@ -489,11 +489,11 @@ angularWidget('ng:include', function(element){
*
* @scenario
* it('should start in settings', function(){
- * expect(element('.example ng\\:switch').text()).toEqual('Settings Div');
+ * expect(element('.doc-example ng\\:switch').text()).toEqual('Settings Div');
* });
* it('should change to home', function(){
* select('switch').option('home');
- * expect(element('.example ng\\:switch').text()).toEqual('Home Span');
+ * expect(element('.doc-example ng\\:switch').text()).toEqual('Home Span');
* });
*/
var ngSwitch = angularWidget('ng:switch', function (element){