diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-06-15 16:15:39 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2013-06-15 16:17:14 +0200 |
commit | b72fa40e52f3b767144b11f1d83c36d417f023d8 (patch) | |
tree | 4233f832395b2ee9a5bb3034b55dd404f4371d61 /factory/fuzzy.py | |
parent | 94d7defa820b69152fb5aeadb3f5ccc3611158fa (diff) | |
download | factory-boy-b72fa40e52f3b767144b11f1d83c36d417f023d8.tar factory-boy-b72fa40e52f3b767144b11f1d83c36d417f023d8.tar.gz |
Fix coverage
Diffstat (limited to 'factory/fuzzy.py')
-rw-r--r-- | factory/fuzzy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/factory/fuzzy.py b/factory/fuzzy.py index e266b93..d3b130b 100644 --- a/factory/fuzzy.py +++ b/factory/fuzzy.py @@ -37,7 +37,7 @@ class BaseFuzzyAttribute(declarations.OrderedDeclaration): Custom fuzzers should override the `fuzz()` method. """ - def fuzz(self): + def fuzz(self): # pragma: no cover raise NotImplementedError() def evaluate(self, sequence, obj, create, extra=None, containers=()): |