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
9d1d3b2d
Kaydet (Commit)
9d1d3b2d
authored
Kas 17, 2017
tarafından
Tim Graham
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #28814 -- Fixed test_runner failure on Python 3.7.
Due to
https://bugs.python.org/issue30399
.
üst
931c60c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
test_parallel.py
tests/test_runner/test_parallel.py
+4
-2
No files found.
tests/test_runner/test_parallel.py
Dosyayı görüntüle @
9d1d3b2d
...
...
@@ -2,6 +2,7 @@ import unittest
from
django.test
import
SimpleTestCase
from
django.test.runner
import
RemoteTestResult
from
django.utils.version
import
PY37
try
:
import
tblib
...
...
@@ -79,7 +80,8 @@ class RemoteTestResultTest(SimpleTestCase):
event
=
events
[
1
]
self
.
assertEqual
(
event
[
0
],
'addSubTest'
)
self
.
assertEqual
(
str
(
event
[
2
]),
'dummy_test (test_runner.test_parallel.SampleFailingSubtest) (index=0)'
)
self
.
assertEqual
(
repr
(
event
[
3
][
1
]),
"AssertionError('0 != 1',)"
)
trailing_comma
=
''
if
PY37
else
','
self
.
assertEqual
(
repr
(
event
[
3
][
1
]),
"AssertionError('0 != 1'
%
s)"
%
trailing_comma
)
event
=
events
[
2
]
self
.
assertEqual
(
repr
(
event
[
3
][
1
]),
"AssertionError('2 != 1'
,)"
)
self
.
assertEqual
(
repr
(
event
[
3
][
1
]),
"AssertionError('2 != 1'
%
s)"
%
trailing_comma
)
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