diff options
author | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-08-16 23:59:29 +0200 |
---|---|---|
committer | Raphaël Barrois <raphael.barrois@polytechnique.org> | 2012-08-16 23:59:29 +0200 |
commit | b36bcc41725680fe06e63ff0af7ee5798fceee34 (patch) | |
tree | 2d7ee3073a97db977f04e26dbf7bf031629da908 /factory/containers.py | |
parent | eeb9a6254d7e333f86faf63f0d4e4f74749efec1 (diff) | |
download | factory-boy-b36bcc41725680fe06e63ff0af7ee5798fceee34.tar factory-boy-b36bcc41725680fe06e63ff0af7ee5798fceee34.tar.gz |
Improve test coverage.
Signed-off-by: Raphaël Barrois <raphael.barrois@polytechnique.org>
Diffstat (limited to 'factory/containers.py')
-rw-r--r-- | factory/containers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/factory/containers.py b/factory/containers.py index 946fbd3..6834f60 100644 --- a/factory/containers.py +++ b/factory/containers.py @@ -167,7 +167,7 @@ class PostGenerationDeclarationDict(DeclarationDict): class LazyValue(object): """Some kind of "lazy evaluating" object.""" - def evaluate(self, obj, containers=()): + def evaluate(self, obj, containers=()): # pragma: no cover """Compute the value, using the given object.""" raise NotImplementedError("This is an abstract method.") |