@@ -15,7 +15,7 @@ module('Acceptance | Class', function (hooks) {
15
15
16
16
test ( 'lists all the methods on the class page' , async function ( assert ) {
17
17
const store = this . owner . lookup ( 'service:store' ) ;
18
- const container = store . peekRecord ( 'class' , 'ember-1.0.0-Container ' ) ;
18
+ const container = store . peekRecord ( 'class' , 'ember-1.0.0-container ' ) ;
19
19
assert . equal (
20
20
findAll ( '.spec-method-list li' ) . length ,
21
21
container . get ( 'methods.length' )
@@ -32,7 +32,7 @@ module('Acceptance | Class', function (hooks) {
32
32
33
33
test ( 'lists all the properties on the class page' , function ( assert ) {
34
34
const store = this . owner . lookup ( 'service:store' ) ;
35
- const container = store . peekRecord ( 'class' , 'ember-1.0.0-Container ' ) ;
35
+ const container = store . peekRecord ( 'class' , 'ember-1.0.0-container ' ) ;
36
36
assert . equal (
37
37
findAll ( '.spec-property-list li' ) . length ,
38
38
container . get ( 'properties.length' )
@@ -41,7 +41,7 @@ module('Acceptance | Class', function (hooks) {
41
41
42
42
test ( 'lists all the events on the class page' , function ( assert ) {
43
43
const store = this . owner . lookup ( 'service:store' ) ;
44
- const container = store . peekRecord ( 'class' , 'ember-1.0.0-Container ' ) ;
44
+ const container = store . peekRecord ( 'class' , 'ember-1.0.0-container ' ) ;
45
45
assert . equal (
46
46
findAll ( '.spec-event-list li' ) . length ,
47
47
container . get ( 'events.length' )
0 commit comments