aboutsummaryrefslogtreecommitdiffstats
path: root/test/scenario
diff options
context:
space:
mode:
authorAndres Ornelas2010-06-09 13:30:54 -0700
committerAndres Ornelas2010-06-09 13:30:54 -0700
commitf6a405c283ba1f2e0037e0bedb52e5cee618d4ff (patch)
tree13c789fd6dc3a303a96c5d47cfa6dc31bb2085f2 /test/scenario
parentfe03ea0d1f8814817bee5a35d745db16858eb490 (diff)
downloadangular.js-f6a405c283ba1f2e0037e0bedb52e5cee618d4ff.tar.bz2
change repeater count expectation wording
Diffstat (limited to 'test/scenario')
-rw-r--r--test/scenario/DSLSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scenario/DSLSpec.js b/test/scenario/DSLSpec.js
index 0cce7b75..5aac9752 100644
--- a/test/scenario/DSLSpec.js
+++ b/test/scenario/DSLSpec.js
@@ -46,7 +46,7 @@ describe("DSL", function() {
describe('repeater', function() {
it('should check the count of repeated elements', function() {
dslExpect.repeater('.repeater-row').count.toEqual(2);
- expect(lastStep.name).toEqual("Expect to see 2 items repeated with selector '.repeater-row'");
+ expect(lastStep.name).toEqual("Expect that there are 2 items in Repeater with selector '.repeater-row'");
var html = "<div class='repeater-row'>a</div><div class='repeater-row'>b</div>";
executeStep(lastStep, html);
});