File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ describe("Filter", function () {
3434
3535 it ( "Should translate known strings according to translate context" , function ( ) {
3636 catalog . currentLanguage = "pt-BR" ;
37- var el = $compile ( "<span>{{\"Hello\"|translate:{translateContext:'Bull'}}}</span>" ) ( $rootScope ) ;
37+ var el = $compile ( "<span>{{\"Hello\"|translate:{translateContext:'Bull'} }}</span>" ) ( $rootScope ) ;
3838 $rootScope . $digest ( ) ;
3939 assert . equal ( el . text ( ) , "Olé" ) ;
40- el = $compile ( "<span>{{\"Hello\"|translate:{translateContext:'Person'}}}</span>" ) ( $rootScope ) ;
40+ el = $compile ( "<span>{{\"Hello\"|translate:{translateContext:'Person'} }}</span>" ) ( $rootScope ) ;
4141 $rootScope . $digest ( ) ;
4242 assert . equal ( el . text ( ) , "Olá" ) ;
4343 el = $compile ( "<span>{{\"Hello\"|translate}}</span>" ) ( $rootScope ) ;
You can’t perform that action at this time.
0 commit comments