Skip to content

Commit

Permalink
Fixup for namespace clobber
Browse files Browse the repository at this point in the history
  • Loading branch information
pmitros committed Jan 8, 2016
1 parent 596ebd9 commit 3642dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feedbacktests/test_feedback.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def setUp(self):
def patched_uniform(min, max):
return self.random_patch_value

patcher = mock.patch("random.uniform",
patcher = mock.patch("feedback.feedback.random.uniform",
patched_uniform)
patcher.start()
self.addCleanup(patcher.stop)
Expand Down

0 comments on commit 3642dc8

Please sign in to comment.