@@ -15,7 +15,7 @@ module('Acceptance | Class', function (hooks) {
1515
1616 test ( 'lists all the methods on the class page' , async function ( assert ) {
1717 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 ' ) ;
1919 assert . equal (
2020 findAll ( '.spec-method-list li' ) . length ,
2121 container . get ( 'methods.length' )
@@ -32,7 +32,7 @@ module('Acceptance | Class', function (hooks) {
3232
3333 test ( 'lists all the properties on the class page' , function ( assert ) {
3434 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 ' ) ;
3636 assert . equal (
3737 findAll ( '.spec-property-list li' ) . length ,
3838 container . get ( 'properties.length' )
@@ -41,7 +41,7 @@ module('Acceptance | Class', function (hooks) {
4141
4242 test ( 'lists all the events on the class page' , function ( assert ) {
4343 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 ' ) ;
4545 assert . equal (
4646 findAll ( '.spec-event-list li' ) . length ,
4747 container . get ( 'events.length' )
0 commit comments