aboutsummaryrefslogtreecommitdiffstats
path: root/src/scenario/DSL.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/scenario/DSL.js')
-rw-r--r--src/scenario/DSL.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scenario/DSL.js b/src/scenario/DSL.js
index a017f29d..feedcdcc 100644
--- a/src/scenario/DSL.js
+++ b/src/scenario/DSL.js
@@ -49,7 +49,7 @@ angular.scenario.dsl.expect = {
return {
count: {
toEqual: function(number) {
- $scenario.addStep("Expect to see " + number + " items repeated with selector '" + selector + "'", function(done) {
+ $scenario.addStep("Expect that there are " + number + " items in Repeater with selector '" + selector + "'", function(done) {
var items = this.testDocument.find(selector);
if (items.length != number) {
this.result.fail("Expected " + number + " but was " + items.length);