Explorar o código

update test script

Falko Schindler %!s(int64=2) %!d(string=hai) anos
pai
achega
61d27d0c4f
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      test_startup.sh

+ 1 - 1
test_startup.sh

@@ -4,7 +4,7 @@ run() {
     output=`{ timeout 10 python3 $1; } 2>&1`
     exitcode=$?
     test $exitcode -eq 124 && exitcode=0 # exitcode 124 is comming from "timeout command above"
-    echo $output | grep "JustPy ready to go" > /dev/null || exitcode=1
+    echo $output | grep "NiceGUI ready to go" > /dev/null || exitcode=1
     echo $output | grep "Traceback" > /dev/null && exitcode=1
     echo $output | grep "Error" > /dev/null && exitcode=1
     if test $exitcode -ne 0; then