Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
c653ce31
Kaydet (Commit)
c653ce31
authored
Tem 10, 2010
tarafından
Michael Foord
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix error message for comparing single line strings in unittest.TestCase.assertEqual.
Issue 9174.
üst
0425a8ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
3 deletions
+23
-3
case.py
Lib/unittest/case.py
+8
-3
test_case.py
Lib/unittest/test/test_case.py
+15
-0
No files found.
Lib/unittest/case.py
Dosyayı görüntüle @
c653ce31
...
...
@@ -940,9 +940,14 @@ class TestCase(object):
'Second argument is not a string'
))
if
first
!=
second
:
standardMsg
=
'
%
s !=
%
s'
%
(
safe_repr
(
first
,
True
),
safe_repr
(
second
,
True
))
diff
=
'
\n
'
+
''
.
join
(
difflib
.
ndiff
(
first
.
splitlines
(
True
),
second
.
splitlines
(
True
)))
firstlines
=
first
.
splitlines
(
True
)
secondlines
=
second
.
splitlines
(
True
)
if
len
(
firstlines
)
==
1
and
first
.
strip
(
'
\r\n
'
)
==
first
:
firstlines
=
[
first
+
'
\n
'
]
secondlines
=
[
second
+
'
\n
'
]
standardMsg
=
'
%
s !=
%
s'
%
(
safe_repr
(
first
,
True
),
safe_repr
(
second
,
True
))
diff
=
'
\n
'
+
''
.
join
(
difflib
.
ndiff
(
firstlines
,
secondlines
))
standardMsg
=
self
.
_truncateMessage
(
standardMsg
,
diff
)
self
.
fail
(
self
.
_formatMessage
(
msg
,
standardMsg
))
...
...
Lib/unittest/test/test_case.py
Dosyayı görüntüle @
c653ce31
...
...
@@ -841,6 +841,21 @@ test case
# so can't use assertEqual either. Just use assertTrue.
self
.
assertTrue
(
sample_text_error
==
error
)
def
testAsertEqualSingleLine
(
self
):
sample_text
=
"laden swallows fly slowly"
revised_sample_text
=
"unladen swallows fly quickly"
sample_text_error
=
"""
\
- laden swallows fly slowly
? ^^^^
+ unladen swallows fly quickly
? ++ ^^^^^
"""
try
:
self
.
assertEqual
(
sample_text
,
revised_sample_text
)
except
self
.
failureException
as
e
:
error
=
str
(
e
)
.
split
(
'
\n
'
,
1
)[
1
]
self
.
assertTrue
(
sample_text_error
==
error
)
def
testAssertIsNone
(
self
):
self
.
assertIsNone
(
None
)
self
.
assertRaises
(
self
.
failureException
,
self
.
assertIsNone
,
False
)
...
...
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