Selaa lähdekoodia

Changed test output

Efren Yevale Varela 4 vuotta sitten
vanhempi
commit
541c3ab112
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      console.js

+ 1 - 1
console.js

@@ -1,7 +1,7 @@
 runTests = (label, network, tests) => {
   console.log(`--- ${label}`);
   for (test of tests) {
-    console.log(`${label} test ${JSON.stringify(test)}: ${network.run(test)}`);
+    console.log(`${label} test ${JSON.stringify(test)}: ${JSON.stringify(network.run(test))}`);
   }
 }