@@ -93,9 +93,7 @@ describe('Blueprint: route', function () {
9393
9494 expect ( _file ( 'app/templates/child.hbs' ) ) . to . equal ( '{{page-title "Child"}}\n{{outlet}}' ) ;
9595
96- expect ( _file ( 'tests/unit/routes/child-test.js' ) ) . to . equal (
97- fixture ( 'route-test/child.js' )
98- ) ;
96+ expect ( _file ( 'tests/unit/routes/child-test.js' ) ) . to . equal ( fixture ( 'route-test/child.js' ) ) ;
9997
10098 expect ( file ( 'app/router.js' ) )
10199 . to . contain ( "this.route('parent', {" )
@@ -113,9 +111,7 @@ describe('Blueprint: route', function () {
113111
114112 expect ( _file ( 'app/child/template.hbs' ) ) . to . equal ( '{{page-title "Child"}}\n{{outlet}}' ) ;
115113
116- expect ( _file ( 'tests/unit/child/route-test.js' ) ) . to . equal (
117- fixture ( 'route-test/child.js' )
118- ) ;
114+ expect ( _file ( 'tests/unit/child/route-test.js' ) ) . to . equal ( fixture ( 'route-test/child.js' ) ) ;
119115
120116 expect ( file ( 'app/router.js' ) )
121117 . to . contain ( "this.route('parent', {" )
@@ -334,7 +330,9 @@ describe('Blueprint: route', function () {
334330 "export { default } from 'my-addon/templates/foo';"
335331 ) ;
336332
337- expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
333+ expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal (
334+ fixture ( 'route-test/rfc232-addon.js' )
335+ ) ;
338336
339337 expect ( file ( 'tests/dummy/app/router.js' ) ) . to . not . contain ( "this.route('foo')" ) ;
340338 } ) . then ( ( ) => {
@@ -362,7 +360,9 @@ describe('Blueprint: route', function () {
362360 "export { default } from 'my-addon/templates/foo';"
363361 ) ;
364362
365- expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
363+ expect ( _file ( 'tests/unit/routes/foo-test.js' ) ) . to . equal (
364+ fixture ( 'route-test/rfc232-addon.js' )
365+ ) ;
366366
367367 expect ( file ( 'tests/dummy/app/router.js' ) ) . to . not . contain ( "this.route('foo')" ) ;
368368 expect ( file ( 'tests/dummy/app/router.js' ) ) . to . not . contain ( "this.route('foo.js')" ) ;
@@ -471,7 +471,9 @@ describe('Blueprint: route', function () {
471471 "export { default } from 'my-addon/foo/template';"
472472 ) ;
473473
474- expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
474+ expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal (
475+ fixture ( 'route-test/rfc232-addon.js' )
476+ ) ;
475477 } ) ;
476478 } ) ;
477479
@@ -495,7 +497,9 @@ describe('Blueprint: route', function () {
495497 "export { default } from 'my-addon/foo/template';"
496498 ) ;
497499
498- expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal ( fixture ( 'route-test/rfc232-addon.js' ) ) ;
500+ expect ( _file ( 'tests/unit/foo/route-test.js' ) ) . to . equal (
501+ fixture ( 'route-test/rfc232-addon.js' )
502+ ) ;
499503 } ) ;
500504 } ) ;
501505
0 commit comments