Skip to content

Commit

Permalink
Remove dupe test case
Browse files Browse the repository at this point in the history
  • Loading branch information
liuh-80 committed Aug 12, 2022
1 parent 9e37655 commit bb4b3ff
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions tests/ip_config_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,19 +190,6 @@ def test_intf_vrf_bind_unbind(self):
print(result.exit_code, result.output)
assert result.exit_code == 0

def test_intf_vrf_bind_unbind(self):
runner = CliRunner()
db = Db()
obj = {'config_db':db.cfgdb, 'namespace':db.db.namespace}

result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["bind"], ["Ethernet64", "Vrf1"], obj=obj)
print(result.exit_code, result.output)
assert result.exit_code == 0

result = runner.invoke(config.config.commands["interface"].commands["vrf"].commands["unbind"], ["Ethernet64"], obj=obj)
print(result.exit_code, result.output)
assert result.exit_code == 0

@classmethod
def teardown_class(cls):
os.environ['UTILITIES_UNIT_TESTING'] = "0"
Expand Down

0 comments on commit bb4b3ff

Please sign in to comment.