File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ def tearDown(cls):
3030cls .output .close ()
3131sys .stdout = cls .saved_stdout
3232
33- def test_sales_manager_shall_work_through_proxy_with_delay (cls ):
33+ def test_sales_manager_shall_talk_through_proxy_with_delay (cls ):
3434cls .p .busy = 'No'
3535start_time = time ()
36- cls .p .work ()
36+ cls .p .talk ()
3737end_time = time ()
3838execution_time = end_time - start_time
3939print_output = cls .output .getvalue ()
@@ -46,7 +46,7 @@ def test_sales_manager_shall_work_through_proxy_with_delay(cls):
4646def test_sales_manager_shall_respond_through_proxy_with_delay (cls ):
4747cls .p .busy = 'Yes'
4848start_time = time ()
49- cls .p .work ()
49+ cls .p .talk ()
5050end_time = time ()
5151execution_time = end_time - start_time
5252print_output = cls .output .getvalue ()
@@ -75,10 +75,10 @@ def tearDown(cls):
7575cls .output .close ()
7676sys .stdout = cls .saved_stdout
7777
78- def test_sales_manager_shall_not_work_through_proxy_with_delay (cls ):
78+ def test_sales_manager_shall_not_talk_through_proxy_with_delay (cls ):
7979cls .ntp .busy = 'No'
8080start_time = time ()
81- cls .ntp .work ()
81+ cls .ntp .talk ()
8282end_time = time ()
8383execution_time = end_time - start_time
8484print_output = cls .output .getvalue ()
@@ -91,7 +91,7 @@ def test_sales_manager_shall_not_work_through_proxy_with_delay(cls):
9191def test_sales_manager_shall_not_respond_through_proxy_with_delay (cls ):
9292cls .ntp .busy = 'Yes'
9393start_time = time ()
94- cls .ntp .work ()
94+ cls .ntp .talk ()
9595end_time = time ()
9696execution_time = end_time - start_time
9797print_output = cls .output .getvalue ()
You can’t perform that action at this time.
0 commit comments