aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ng/directive/ngClass.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ng/directive/ngClass.js b/src/ng/directive/ngClass.js
index 96bd601d..a0d23a28 100644
--- a/src/ng/directive/ngClass.js
+++ b/src/ng/directive/ngClass.js
@@ -128,10 +128,10 @@ function classDirective(name, selector) {
expect(element('.doc-example-live p:first').prop('className')).not().toMatch(/bold/);
expect(element('.doc-example-live p:first').prop('className')).not().toMatch(/red/);
- input('bold').check();
+ input('important').check();
expect(element('.doc-example-live p:first').prop('className')).toMatch(/bold/);
- input('red').check();
+ input('error').check();
expect(element('.doc-example-live p:first').prop('className')).toMatch(/red/);
});