Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
da7ab872
Kaydet (Commit)
da7ab872
authored
Mar 30, 2014
tarafından
Loic Bistuer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed mistake in tests from commit
20399083
. Refs #19816.
üst
a2407c95
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
tests.py
tests/many_to_many/tests.py
+2
-2
tests.py
tests/many_to_one_null/tests.py
+1
-1
No files found.
tests/many_to_many/tests.py
Dosyayı görüntüle @
da7ab872
...
...
@@ -376,7 +376,7 @@ class ManyToManyTests(TestCase):
# ManyRelatedObjectsDescriptor.__set__. Refs #19816.
self
.
a1
.
publications
=
[
self
.
p1
,
self
.
p2
]
qs
=
self
.
a1
.
publications
.
filter
(
id
=
self
.
a1
.
id
)
qs
=
self
.
a1
.
publications
.
filter
(
title
=
'The Python Journal'
)
self
.
a1
.
publications
=
qs
self
.
assertEqual
(
1
,
self
.
a1
.
publications
.
count
())
...
...
@@ -388,7 +388,7 @@ class ManyToManyTests(TestCase):
# ReverseManyRelatedObjectsDescriptor.__set__. Refs #19816.
self
.
p1
.
article_set
=
[
self
.
a1
,
self
.
a2
]
qs
=
self
.
p1
.
article_set
.
filter
(
id
=
self
.
p1
.
id
)
qs
=
self
.
p1
.
article_set
.
filter
(
headline
=
'Django lets you build Web apps easily'
)
self
.
p1
.
article_set
=
qs
self
.
assertEqual
(
1
,
self
.
p1
.
article_set
.
count
())
...
...
tests/many_to_one_null/tests.py
Dosyayı görüntüle @
da7ab872
...
...
@@ -92,7 +92,7 @@ class ManyToOneNullTests(TestCase):
# ForeignRelatedObjectsDescriptor.__set__. Refs #19816.
self
.
r2
.
article_set
=
[
self
.
a2
,
self
.
a3
]
qs
=
self
.
r2
.
article_set
.
filter
(
id
=
self
.
a2
.
id
)
qs
=
self
.
r2
.
article_set
.
filter
(
headline
=
"Second"
)
self
.
r2
.
article_set
=
qs
self
.
assertEqual
(
1
,
self
.
r2
.
article_set
.
count
())
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment