Skip to content

Commit 5565488

Browse files
author
Myron Sosyak
committed
Fix test
1 parent e0ba9f6 commit 5565488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/dvslib/dvs_lag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __init__(self, adb, cdb, dvs):
88

99
def create_port_channel(self, lag_id, admin_status="up", mtu="1500", fast_rate=False):
1010
lag = "PortChannel{}".format(lag_id)
11-
lag_entry = {"admin_status": admin_status, "mtu": mtu, "fast_rate": str(fast_rate)}
11+
lag_entry = {"admin_status": admin_status, "mtu": mtu, "fast_rate": str(fast_rate).lower()}
1212
self.config_db.create_entry("PORTCHANNEL", lag, lag_entry)
1313

1414
def remove_port_channel(self, lag_id):

0 commit comments

Comments
 (0)