mirror of
https://github.com/Hopiu/django.git
synced 2026-03-25 10:20:31 +00:00
Removed a test that didn't make sense; code could never be called the way the test was written.
This commit is contained in:
parent
3d595c3bc3
commit
6634cb7b53
1 changed files with 0 additions and 4 deletions
|
|
@ -60,10 +60,6 @@ class ManyToOneRegressionTests(TestCase):
|
|||
self.assertRaises(ValueError, Child, name='xyzzy', parent=None)
|
||||
self.assertRaises(ValueError, Child.objects.create, name='xyzzy', parent=None)
|
||||
|
||||
# Trying to assign to unbound attribute raises AttributeError
|
||||
six.assertRaisesRegex(self, AttributeError, "must be accessed via instance",
|
||||
Child.parent.__set__, None, p)
|
||||
|
||||
# Creation using keyword argument should cache the related object.
|
||||
p = Parent.objects.get(name="Parent")
|
||||
c = Child(parent=p)
|
||||
|
|
|
|||
Loading…
Reference in a new issue