diff --git a/modules/angular2/test/directives/ng_switch_spec.ts b/modules/angular2/test/directives/ng_switch_spec.ts
index 9b1d6ca7a1..1cb291ff5b 100644
--- a/modules/angular2/test/directives/ng_switch_spec.ts
+++ b/modules/angular2/test/directives/ng_switch_spec.ts
@@ -23,8 +23,8 @@ export function main() {
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
var template = '
' +
'
' +
- '- when a
' +
- '- when b
' +
+ '- when a
' +
+ '- when b
' +
'
';
tcb.overrideTemplate(TestComponent, template)
@@ -75,10 +75,10 @@ export function main() {
inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => {
var template = '' +
'
' +
- '- when a1;
' +
- '- when b1;
' +
- '- when a2;
' +
- '- when b2;
' +
+ '- when a1;
' +
+ '- when b1;
' +
+ '- when a2;
' +
+ '- when b2;
' +
'- when default1;
' +
'- when default2;
' +
'
';