Skip to content

Commit 87d760e

Browse files
Fix Python 3.6 coding style error
1 parent ee4a00a commit 87d760e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

f5/bigip/tm/ltm/test/functional/test_nat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def test_delete(self, request, mgmt_root, NAT):
332332
setup_loadable_nat_test(request, mgmt_root, NAT)
333333
n1 = mgmt_root.tm.ltm.nats.nat.load(name='nat1', partition='Common')
334334
n1.delete()
335-
del(n1)
335+
del n1
336336
with pytest.raises(HTTPError) as err:
337337
mgmt_root.tm.ltm.nats.nat.load(name='nat1', partition='Common')
338338
assert err.response.status_code == 404

0 commit comments

Comments
 (0)