@@ -9,12 +9,12 @@ module("Unit | Controller | docs-index", function (hooks) {
99 const siteSettings = getOwner ( this ) . lookup ( "service:site-settings" ) ;
1010 siteSettings . docs_categories = "1|2|3|333|999" ;
1111
12- const controller = getOwner ( this ) . lookup ( "controller:docs- index" ) ;
12+ const controller = getOwner ( this ) . lookup ( "controller:docs. index" ) ;
1313 assert . deepEqual ( controller . docsCategories , [ "bug" , "feature" , "meta" ] ) ;
1414 } ) ;
1515
1616 test ( "updateSelectedTags correctly removes tags" , function ( assert ) {
17- const controller = getOwner ( this ) . lookup ( "controller:docs- index" ) ;
17+ const controller = getOwner ( this ) . lookup ( "controller:docs. index" ) ;
1818 controller . filterTags = "foo|bar|baz" ;
1919
2020 controller . updateSelectedTags ( { id : "bar" } ) ;
@@ -23,7 +23,7 @@ module("Unit | Controller | docs-index", function (hooks) {
2323 } ) ;
2424
2525 test ( "updateSelectedTags correctly appends tags to list" , function ( assert ) {
26- const controller = getOwner ( this ) . lookup ( "controller:docs- index" ) ;
26+ const controller = getOwner ( this ) . lookup ( "controller:docs. index" ) ;
2727 controller . filterTags = "foo|bar" ;
2828
2929 controller . updateSelectedTags ( { id : "baz" } ) ;
@@ -32,7 +32,7 @@ module("Unit | Controller | docs-index", function (hooks) {
3232 } ) ;
3333
3434 test ( "updateSelectedTags correctly appends tags to empty list" , function ( assert ) {
35- const controller = getOwner ( this ) . lookup ( "controller:docs- index" ) ;
35+ const controller = getOwner ( this ) . lookup ( "controller:docs. index" ) ;
3636 controller . filterTags = null ;
3737
3838 controller . updateSelectedTags ( { id : "foo" } ) ;
0 commit comments