Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 977e2f5

Browse files
docs(ngClass): fix e2e test for example
Broken by fd7bca2
1 parent 4184ff8 commit 977e2f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ng/directive/ngClass.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,10 +128,10 @@ function classDirective(name, selector) {
128128
expect(element('.doc-example-live p:first').prop('className')).not().toMatch(/bold/);
129129
expect(element('.doc-example-live p:first').prop('className')).not().toMatch(/red/);
130130
131-
input('bold').check();
131+
input('important').check();
132132
expect(element('.doc-example-live p:first').prop('className')).toMatch(/bold/);
133133
134-
input('red').check();
134+
input('error').check();
135135
expect(element('.doc-example-live p:first').prop('className')).toMatch(/red/);
136136
});
137137

0 commit comments

Comments
 (0)