@@ -19,47 +19,47 @@ suite('ASCII art', function() {
1919 } ) ;
2020
2121
22- test ( 'can execute " Test only one letter E" ' , function ( ) {
22+ test ( 'Test only one letter E' , function ( ) {
2323 let inputFile = new File ( './test/training/easy/ASCIIArt/input/01 - test only one letter E.txt' ) ;
2424
2525 execute ( inputFile . readline . bind ( inputFile ) ) ;
2626
2727 assertOutputAnswer ( './test/training/easy/ASCIIArt/output/01 - test only one letter E.txt' ) ;
2828 } ) ;
2929
30- test ( 'can execute " Test MANHATTAN" ' , function ( ) {
30+ test ( 'Test MANHATTAN' , function ( ) {
3131 let inputFile = new File ( './test/training/easy/ASCIIArt/input/02 - test MANHATTAN.txt' ) ;
3232
3333 execute ( inputFile . readline . bind ( inputFile ) ) ;
3434
3535 assertOutputAnswer ( './test/training/easy/ASCIIArt/output/02 - test MANHATTAN.txt' ) ;
3636 } ) ;
3737
38- test ( 'can execute " Test ManhAtTan" ' , function ( ) {
38+ test ( 'Test ManhAtTan' , function ( ) {
3939 let inputFile = new File ( './test/training/easy/ASCIIArt/input/03 - test ManhAtTan.txt' ) ;
4040
4141 execute ( inputFile . readline . bind ( inputFile ) ) ;
4242
4343 assertOutputAnswer ( './test/training/easy/ASCIIArt/output/03 - test ManhAtTan.txt' ) ;
4444 } ) ;
4545
46- test ( 'can execute " Test M@NH@TT@N" ' , function ( ) {
46+ test ( 'Test M@NH@TT@N' , function ( ) {
4747 let inputFile = new File ( './test/training/easy/ASCIIArt/input/04 - test M@NH@TT@N.txt' ) ;
4848
4949 execute ( inputFile . readline . bind ( inputFile ) ) ;
5050
5151 assertOutputAnswer ( './test/training/easy/ASCIIArt/output/04 - test M@NH@TT@N.txt' ) ;
5252 } ) ;
5353
54- test ( 'can execute " MANHATTAN with another ASCII representation" ' , function ( ) {
54+ test ( 'MANHATTAN with another ASCII representation' , function ( ) {
5555 let inputFile = new File ( './test/training/easy/ASCIIArt/input/05 - MANHATTAN with another ASCII representation.txt' ) ;
5656
5757 execute ( inputFile . readline . bind ( inputFile ) ) ;
5858
5959 assertOutputAnswer ( './test/training/easy/ASCIIArt/output/05 - MANHATTAN with another ASCII representation.txt' ) ;
6060 } ) ;
6161
62- test ( 'can execute " Test MAN HAT TAN" ' , function ( ) {
62+ test ( 'Test MAN HAT TAN' , function ( ) {
6363 let inputFile = new File ( './test/training/easy/ASCIIArt/input/06 - test MAN HAT TAN.txt' ) ;
6464
6565 execute ( inputFile . readline . bind ( inputFile ) ) ;
0 commit comments