diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-08-05 13:43:31 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-08-16 14:47:38 +0000 |
commit | ecd1fc7dfa6a36d1774f71093380b3548a22346b (patch) | |
tree | 6ed2568a9950e955c4826941216af153c5b08b2f /test/test_quic.py | |
parent | d25d364d2bc146d3e17ab7c4d558bcb0ce138b89 (diff) |
hsa: Refactor quic_echo to allow other protocols
Type: refactor
Change-Id: Iaef9091e1d057110530255e644fad1c298418966
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'test/test_quic.py')
-rw-r--r-- | test/test_quic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_quic.py b/test/test_quic.py index ed15cdcd8ed..bbf7d72b838 100644 --- a/test/test_quic.py +++ b/test/test_quic.py @@ -173,7 +173,7 @@ class QUICEchoExternalTestCase(QUICTestCase): _args = self.server_echo_test_args + list(args) self.worker_server = QUICAppWorker( self.build_dir, - "quic_echo", + "vpp_echo", _args, self.logger) self.worker_server.start() @@ -184,7 +184,7 @@ class QUICEchoExternalTestCase(QUICTestCase): # self.client_echo_test_args += "use-svm-api" self.worker_client = QUICAppWorker( self.build_dir, - "quic_echo", + "vpp_echo", _args, self.logger) self.worker_client.start() |