Allow table_id override from --test-params.
diff --git a/tests-1.3/basic.py b/tests-1.3/basic.py
index 21dd130..2d0f8e8 100644
--- a/tests-1.3/basic.py
+++ b/tests-1.3/basic.py
@@ -94,7 +94,7 @@
for out_port in ports:
request = ofp.message.flow_add(
- table_id=0,
+ table_id=test_param_get_table(),
cookie=42,
match=match,
instructions=[
@@ -134,7 +134,7 @@
for out_port in ports:
request = ofp.message.flow_add(
- table_id=0,
+ table_id=test_param_get_table(),
cookie=42,
instructions=[
ofp.instruction.apply_actions(
@@ -171,7 +171,7 @@
match = packet_to_flow_match(self, parsed_pkt)
request = ofp.message.flow_add(
- table_id=0,
+ table_id=test_param_get_table(),
cookie=42,
match=match,
instructions=[
@@ -206,7 +206,7 @@
pkt = str(simple_tcp_packet())
request = ofp.message.flow_add(
- table_id=0,
+ table_id=test_param_get_table(),
cookie=42,
instructions=[
ofp.instruction.apply_actions(
@@ -241,7 +241,7 @@
pkt = str(parsed_pkt)
request = ofp.message.flow_add(
- table_id=0,
+ table_id=test_param_get_table(),
cookie=42,
instructions=[
ofp.instruction.apply_actions(