diff options
author | Graham Northup <grissess@nexusg.org> | 2017-01-31 00:29:17 -0500 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-01-31 00:29:17 -0500 |
commit | 75bc43e7da70bad381bec280d7b4f10d0baaeeef (patch) | |
tree | b841df7bb90c761869c357c836f38684df4301f9 | |
parent | 712ca8f06e656215c68919f9749a23bec695ccc8 (diff) |
SIlly bugfix to client test
-rw-r--r-- | client.py | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -402,13 +402,16 @@ if options.gui: guithread.start() if options.test: - FREQ = 440 + FREQS[0] = 440 + EXPIRATIONS[0] = time.time() + 1 time.sleep(1) - FREQ = 0 + FREQS[0] = 0 time.sleep(1) - FREQ = 880 + FREQS[0] = 880 + EXPIRATIONS[0] = time.time() + 1 time.sleep(1) - FREQ = 440 + FREQS[0] = 440 + EXPIRATIONS[0] = time.time() + 2 time.sleep(2) exit() |