Skip to content

Commit 29884a7

Browse files
committed
rename
1 parent 7e45fff commit 29884a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/performance/locust_files/platform_ping_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
assert locust_plugins # nosec
2020

2121

22-
class LocustAuth(BaseSettings):
22+
class MonitoringBasicAuth(BaseSettings):
2323
SC_USER_NAME: str = Field(default=..., examples=["<your username>"])
2424
SC_PASSWORD: str = Field(default=..., examples=["<your password>"])
2525

2626

2727
class WebApiUser(FastHttpUser):
2828
def __init__(self, *args, **kwargs):
2929
super().__init__(*args, **kwargs)
30-
_auth = LocustAuth()
30+
_auth = MonitoringBasicAuth()
3131
self.auth = (
3232
_auth.SC_USER_NAME,
3333
_auth.SC_PASSWORD,

0 commit comments

Comments
 (0)