Skip to content

Commit 120d639

Browse files
committed
addressed comments
1 parent 9f593ce commit 120d639

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/endtoend/test_threadpool_thread__count_functions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from tests.utils import testutils
88

99

10-
class TestPythonThreadpoolThreadCount2(testutils.WebHostTestCase):
10+
class TestPythonThreadpoolThreadCount(testutils.WebHostTestCase):
1111
""" Test the Http Trigger with setting up the python threadpool thread
1212
count to 2. this test will check if both requests should be processed
1313
at the same time. this file is more focus on testing the E2E flow
@@ -31,7 +31,7 @@ def get_script_dir(cls):
3131
return testutils.E2E_TESTS_FOLDER / 'http_functions'
3232

3333
@testutils.retryable_test(3, 5)
34-
def test_http_func_with_thread_count_2(self):
34+
def test_http_func_with_thread_count(self):
3535
response = [None, None]
3636

3737
def http_req(res_num):
@@ -55,7 +55,7 @@ def http_req(res_num):
5555
self.assertTrue(time_diff_in_seconds < 1)
5656

5757

58-
class TestPythonThreadpoolThreadCount2Stein(TestPythonThreadpoolThreadCount2):
58+
class TestPythonThreadpoolThreadCountStein(TestPythonThreadpoolThreadCount):
5959

6060
@classmethod
6161
def get_script_dir(cls):

tests/endtoend/test_worker_proccess_count_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from tests.utils import testutils
88

99

10-
class TestWorkerProcessCount2(testutils.WebHostTestCase):
10+
class TestWorkerProcessCount(testutils.WebHostTestCase):
1111
"""Test the Http Trigger with setting up the python worker process count
1212
to 2. this test will check if both requests should be processed at the
1313
same time. this file is more focused on testing the E2E flow scenario for
@@ -56,7 +56,7 @@ def http_req(res_num):
5656
self.assertTrue(time_diff_in_seconds < 1)
5757

5858

59-
class TestWorkerProcessCount2Stein(TestWorkerProcessCount2):
59+
class TestWorkerProcessCountStein(TestWorkerProcessCount):
6060

6161
@classmethod
6262
def get_script_dir(cls):

0 commit comments

Comments
 (0)