Skip to content

Commit

Permalink
[QA] Fixed variable name error (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
xamfy authored and rohithasrk committed Nov 17, 2017
1 parent 0303708 commit d400325
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openwisp_network_topology/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ def _create_link(self, **kwargs):
properties={},
organization=org)
options.update(kwargs)
l = self.link_model(**options)
l.full_clean()
l.save()
return l
link = self.link_model(**options)
link.full_clean()
link.save()
return link

def test_save_snapshot_all_method(self, **kwargs):
org = self._create_org()
Expand Down

0 comments on commit d400325

Please sign in to comment.