diff --git a/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Test-wait.IQ.Gen2.VEXcode.py b/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Test-wait.IQ.Gen2.VEXcode.py deleted file mode 100644 index 46619f5..0000000 --- a/Computing-Platforms/IQ/Tests/Gen2/VEXcode/Test-wait.IQ.Gen2.VEXcode.py +++ /dev/null @@ -1,20 +0,0 @@ -"""drive.google.com/file/d/11UUK3HgLWrsIjK_JNW8YvMs5-3_XiRxR""" - - -# IMPORT FROM LIBRARY -# =================== - -from vex import ( - wait, - SECONDS, -) - - -# RUN MAIN PROGRAM -# ================ - -# wait(TIME=3, UNITS=SECONDS) # DOES NOT COMPILE -# wait(DURATION=3, UNITS=SECONDS) # DOES NOT COMPILE -# wait(duration=3, units=SECONDS) # compiles, DOES NOT RUN -# wait(3, units=SECONDS) # compiles, DOES NOT RUN -wait(3, SECONDS) # compiles & runs