Skip to content

Commit d2449cd

Browse files
committed
Rename some tests
1 parent e9db134 commit d2449cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def get_call(*args, **kwargs):
123123

124124
@mock.patch('reportportal_client.client.getenv')
125125
@mock.patch('reportportal_client.client.send_event')
126-
def test_skip_analytics(send_event, getenv):
126+
def test_skip_statistics(send_event, getenv):
127127
getenv.return_value = '1'
128128
client = RPClient('http://endpoint', 'project', 'token')
129129
client.session = mock.Mock()
@@ -133,7 +133,7 @@ def test_skip_analytics(send_event, getenv):
133133

134134
@mock.patch('reportportal_client.client.getenv')
135135
@mock.patch('reportportal_client.client.send_event')
136-
def test_analytics(send_event, getenv):
136+
def test_statistics(send_event, getenv):
137137
getenv.return_value = ''
138138
client = RPClient('http://endpoint', 'project', 'token')
139139
client.session = mock.Mock()

0 commit comments

Comments
 (0)