fix category chooser spec

This commit is contained in:
Joffrey JAFFEUX 2018-05-23 21:07:39 +02:00 committed by GitHub
parent ae004d8b2b
commit db91d71bf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ componentTest('with allowUncategorized=null', {
test(assert) {
andThen(() => {
assert.equal(this.get('subject').header().value(), null);
assert.equal(this.get('subject').header().title(), "Select a category…");
assert.equal(this.get('subject').header().title(), "Select a category");
});
}
});
@ -69,7 +69,7 @@ componentTest('with allowUncategorized=null rootNone=true', {
test(assert) {
andThen(() => {
assert.equal(this.get('subject').header().value(), null);
assert.equal(this.get('subject').header().title(), 'Select a category…');
assert.equal(this.get('subject').header().title(), 'Select a category');
});
}
});
@ -85,7 +85,7 @@ componentTest('with disallowed uncategorized, rootNone and rootNoneLabel', {
test(assert) {
andThen(() => {
assert.equal(this.get('subject').header().value(), null);
assert.equal(this.get('subject').header().title(), 'Select a category…');
assert.equal(this.get('subject').header().title(), 'Select a category');
});
}
});