From 18e454728e23cff85740d7531f77502c63eb9902 Mon Sep 17 00:00:00 2001 From: Kkevsterrr Date: Fri, 13 Mar 2020 08:29:53 -0400 Subject: [PATCH] curl silently --- tests/test_engine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_engine.py b/tests/test_engine.py index 88584c1..ac3a70c 100644 --- a/tests/test_engine.py +++ b/tests/test_engine.py @@ -32,14 +32,14 @@ def test_engine_sleep(): # Create the engine in debug mode with engine.Engine(port, strategy, log_level="info") as eng: - os.system("curl http://example.com?q=ultrasurf") + os.system("curl -s http://example.com") # Strategy to use in opposite direction strategy = "\/ [TCP:flags:SA]-sleep{1}-|" # Create the engine in debug mode with engine.Engine(port, strategy, log_level="debug") as eng: - os.system("curl http://example.com?q=ultrasurf") + os.system("curl -s http://example.com")