aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Makefile2
-rw-r--r--test/test_ip_mcast.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index ef194952..45a0218a 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -81,7 +81,7 @@ wipe-cov: wipe
.PHONY: checkstyle
checkstyle: verify-python-path
@virtualenv $(PYTHON_VENV_PATH) -p python2.7
- @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install $(PYTHON_DEPENDS) pep8"
+ @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install pep8"
@bash -c "source $(PYTHON_VENV_PATH)/bin/activate &&\
pep8 --show-source -v $(WS_ROOT)/test/*.py ||\
(echo \"*******************************************************************\" &&\
diff --git a/test/test_ip_mcast.py b/test/test_ip_mcast.py
index 9b668e42..2e0db430 100644
--- a/test/test_ip_mcast.py
+++ b/test/test_ip_mcast.py
@@ -32,8 +32,8 @@ class MRouteEntryFlags:
#
# The number of packets sent is set to 90 so that when we replicate more than 3
# times, which we do for some entries, we will generate more than 256 packets
-# to the next node in the VLIB graph. Thus we are testing the code's correctness
-# handling this over-flow
+# to the next node in the VLIB graph. Thus we are testing the code's
+# correctness handling this over-flow
#
N_PKTS_IN_STREAM = 90