@@ -6,7 +6,7 @@ import { execute } from '../../../../../lib/community/training/easy/binaryImage/
66
77const __dirname = new URL ( '.' , import . meta. url ) . pathname ;
88
9- suite ( ' Binary image' , function ( ) {
9+ suite ( " Binary image" , function ( ) {
1010 const sandbox = sinon . createSandbox ( ) ;
1111
1212 setup ( function ( ) {
@@ -18,47 +18,47 @@ suite('Binary image', function() {
1818 } ) ;
1919
2020
21- test ( ' Vertical stripes' , function ( ) {
21+ test ( " Vertical stripes" , function ( ) {
2222 let inputFile = new File ( __dirname + 'input/01 - vertical stripes.txt' ) ;
2323
2424 execute ( inputFile . readline . bind ( inputFile ) ) ;
2525
2626 assertOutputAnswer ( __dirname + 'output/01 - vertical stripes.txt' ) ;
2727 } ) ;
2828
29- test ( ' Starting by 0' , function ( ) {
29+ test ( " Starting by 0" , function ( ) {
3030 let inputFile = new File ( __dirname + 'input/02 - starting by 0.txt' ) ;
3131
3232 execute ( inputFile . readline . bind ( inputFile ) ) ;
3333
3434 assertOutputAnswer ( __dirname + 'output/02 - starting by 0.txt' ) ;
3535 } ) ;
3636
37- test ( ' Chess board' , function ( ) {
37+ test ( " Chess board" , function ( ) {
3838 let inputFile = new File ( __dirname + 'input/03 - chess board.txt' ) ;
3939
4040 execute ( inputFile . readline . bind ( inputFile ) ) ;
4141
4242 assertOutputAnswer ( __dirname + 'output/03 - chess board.txt' ) ;
4343 } ) ;
4444
45- test ( ' Horizontal stripes' , function ( ) {
45+ test ( " Horizontal stripes" , function ( ) {
4646 let inputFile = new File ( __dirname + 'input/04 - horizontal stripes.txt' ) ;
4747
4848 execute ( inputFile . readline . bind ( inputFile ) ) ;
4949
5050 assertOutputAnswer ( __dirname + 'output/04 - horizontal stripes.txt' ) ;
5151 } ) ;
5252
53- test ( ' Codingame' , function ( ) {
53+ test ( " Codingame" , function ( ) {
5454 let inputFile = new File ( __dirname + 'input/05 - codingame.txt' ) ;
5555
5656 execute ( inputFile . readline . bind ( inputFile ) ) ;
5757
5858 assertOutputAnswer ( __dirname + 'output/05 - codingame.txt' ) ;
5959 } ) ;
6060
61- test ( ' Invalid' , function ( ) {
61+ test ( " Invalid" , function ( ) {
6262 let inputFile = new File ( __dirname + 'input/06 - invalid.txt' ) ;
6363
6464 execute ( inputFile . readline . bind ( inputFile ) ) ;
@@ -69,7 +69,7 @@ suite('Binary image', function() {
6969 ) ;
7070 } ) ;
7171
72- test ( ' Random' , function ( ) {
72+ test ( " Random" , function ( ) {
7373 let inputFile = new File ( __dirname + 'input/07 - random.txt' ) ;
7474
7575 execute ( inputFile . readline . bind ( inputFile ) ) ;
0 commit comments