Minor change to status message.

This commit is contained in:
pschwartau%netscape.com 2001-05-02 18:15:26 +00:00
Родитель 1e11b7a65f
Коммит 6fac4f1902
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -45,7 +45,7 @@ switch ('1')
case '1':
actual += 'b';
}
status = 'Section A: the string literal "1" as a duplicate label';
status = 'Section A of test: the string literal "1" as a duplicate label';
expect = 'ab';
addThis();
@ -59,7 +59,7 @@ switch (1)
case 1:
actual += 'b';
}
status = 'Section B: the numeric literal 1 as a duplicate label';
status = 'Section B of test: the numeric literal 1 as a duplicate label';
expect = 'ab';
addThis();
@ -78,7 +78,7 @@ function tryThis(x)
actual += 'b';
}
}
status = 'Section C: the numeric literal 1 as a duplicate label, via a function parameter';
status = 'Section C of test: the numeric literal 1 as a duplicate label, via a function parameter';
expect = 'ab';
addThis();