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
3b55f0c6
Kaydet (Commit)
3b55f0c6
authored
Şub 04, 2014
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio: Cosmetic improvement to test__run_once_logging() mock argument.
üst
3c9bb69f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
test_base_events.py
Lib/test/test_asyncio/test_base_events.py
+3
-5
No files found.
Lib/test/test_asyncio/test_base_events.py
Dosyayı görüntüle @
3b55f0c6
...
...
@@ -190,7 +190,7 @@ class BaseEventLoopTests(unittest.TestCase):
@unittest.mock.patch
(
'asyncio.base_events.time'
)
@unittest.mock.patch
(
'asyncio.base_events.logger'
)
def
test__run_once_logging
(
self
,
m_logg
ing
,
m_time
):
def
test__run_once_logging
(
self
,
m_logg
er
,
m_time
):
# Log to INFO level if timeout > 1.0 sec.
idx
=
-
1
data
=
[
10.0
,
10.0
,
12.0
,
13.0
]
...
...
@@ -201,20 +201,18 @@ class BaseEventLoopTests(unittest.TestCase):
return
data
[
idx
]
m_time
.
monotonic
=
monotonic
m_logging
.
INFO
=
logging
.
INFO
m_logging
.
DEBUG
=
logging
.
DEBUG
self
.
loop
.
_scheduled
.
append
(
asyncio
.
TimerHandle
(
11.0
,
lambda
:
True
,
()))
self
.
loop
.
_process_events
=
unittest
.
mock
.
Mock
()
self
.
loop
.
_run_once
()
self
.
assertEqual
(
logging
.
INFO
,
m_logg
ing
.
log
.
call_args
[
0
][
0
])
self
.
assertEqual
(
logging
.
INFO
,
m_logg
er
.
log
.
call_args
[
0
][
0
])
idx
=
-
1
data
=
[
10.0
,
10.0
,
10.3
,
13.0
]
self
.
loop
.
_scheduled
=
[
asyncio
.
TimerHandle
(
11.0
,
lambda
:
True
,
())]
self
.
loop
.
_run_once
()
self
.
assertEqual
(
logging
.
DEBUG
,
m_logg
ing
.
log
.
call_args
[
0
][
0
])
self
.
assertEqual
(
logging
.
DEBUG
,
m_logg
er
.
log
.
call_args
[
0
][
0
])
def
test__run_once_schedule_handle
(
self
):
handle
=
None
...
...
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