diff options
| author | Kevin Wood | 2015-02-28 13:06:47 -0800 | 
|---|---|---|
| committer | Kevin Wood | 2015-02-28 13:06:47 -0800 | 
| commit | b582d52afbad81c56edad8ea3b6d2ac2d352b87e (patch) | |
| tree | 4d6c766f2e49dea2d6fbe49e242e60a2759828f3 | |
| parent | 78e8b1b0108bb8338aa578ea2f4a0237d4edd1d4 (diff) | |
| download | django-rest-framework-b582d52afbad81c56edad8ea3b6d2ac2d352b87e.tar.bz2 | |
Fix docstring formatting
| -rw-r--r-- | tests/test_fields.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/tests/test_fields.py b/tests/test_fields.py index 2ffffd55..1aa528da 100644 --- a/tests/test_fields.py +++ b/tests/test_fields.py @@ -318,7 +318,10 @@ class TestCreateOnlyDefault:          }      def test_create_only_default_callable_sets_context(self): -        """ CreateOnlyDefault instances with a callable default should set_context on the callable if possible """ +        """ +        CreateOnlyDefault instances with a callable default should set_context +        on the callable if possible +        """          class TestCallableDefault:              def set_context(self, serializer_field):                  self.field = serializer_field | 
