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):
30
30
cls .output .close ()
31
31
sys .stdout = cls .saved_stdout
32
32
33
- def test_sales_manager_shall_work_through_proxy_with_delay (cls ):
33
+ def test_sales_manager_shall_talk_through_proxy_with_delay (cls ):
34
34
cls .p .busy = 'No'
35
35
start_time = time ()
36
- cls .p .work ()
36
+ cls .p .talk ()
37
37
end_time = time ()
38
38
execution_time = end_time - start_time
39
39
print_output = cls .output .getvalue ()
@@ -46,7 +46,7 @@ def test_sales_manager_shall_work_through_proxy_with_delay(cls):
46
46
def test_sales_manager_shall_respond_through_proxy_with_delay (cls ):
47
47
cls .p .busy = 'Yes'
48
48
start_time = time ()
49
- cls .p .work ()
49
+ cls .p .talk ()
50
50
end_time = time ()
51
51
execution_time = end_time - start_time
52
52
print_output = cls .output .getvalue ()
@@ -75,10 +75,10 @@ def tearDown(cls):
75
75
cls .output .close ()
76
76
sys .stdout = cls .saved_stdout
77
77
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 ):
79
79
cls .ntp .busy = 'No'
80
80
start_time = time ()
81
- cls .ntp .work ()
81
+ cls .ntp .talk ()
82
82
end_time = time ()
83
83
execution_time = end_time - start_time
84
84
print_output = cls .output .getvalue ()
@@ -91,7 +91,7 @@ def test_sales_manager_shall_not_work_through_proxy_with_delay(cls):
91
91
def test_sales_manager_shall_not_respond_through_proxy_with_delay (cls ):
92
92
cls .ntp .busy = 'Yes'
93
93
start_time = time ()
94
- cls .ntp .work ()
94
+ cls .ntp .talk ()
95
95
end_time = time ()
96
96
execution_time = end_time - start_time
97
97
print_output = cls .output .getvalue ()
You can’t perform that action at this time.
0 commit comments