Skip to content

Commit

Permalink
fix test names
Browse files Browse the repository at this point in the history
Signed-off-by: Yury-Fridlyand <[email protected]>
  • Loading branch information
Yury-Fridlyand committed Nov 20, 2024
1 parent a8ea4d2 commit ea5e75f
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public void closed_client_throws_ExecutionException_with_ClosingException_as_cau

@SneakyThrows
@Test
public void test_update_connection_password_auth_non_valid_pass() {
public void update_connection_password_auth_non_valid_pass() {
// Test Client fails on call to updateConnectionPassword with invalid parameters
try (var testClient = GlideClient.createClient(commonClientConfig().build()).get()) {
var emptyPasswordException =
Expand All @@ -186,7 +186,7 @@ public void test_update_connection_password_auth_non_valid_pass() {

@SneakyThrows
@Test
public void test_update_connection_password_no_server_auth() {
public void update_connection_password_no_server_auth() {
var pwd = UUID.randomUUID().toString();

try (var testClient = GlideClient.createClient(commonClientConfig().build()).get()) {
Expand All @@ -203,7 +203,7 @@ public void test_update_connection_password_no_server_auth() {

@SneakyThrows
@Test
public void test_update_connection_password_long() {
public void update_connection_password_long() {
var pwd = RandomStringUtils.randomAlphabetic(1000);

try (var testClient = GlideClient.createClient(commonClientConfig().build()).get()) {
Expand All @@ -218,7 +218,7 @@ public void test_update_connection_password_long() {
@Timeout(50)
@SneakyThrows
@Test
public void test_replace_password_immediateAuth_wrong_password() {
public void replace_password_immediateAuth_wrong_password() {
var pwd = UUID.randomUUID().toString();
var notThePwd = UUID.randomUUID().toString();

Expand Down Expand Up @@ -247,7 +247,7 @@ public void test_replace_password_immediateAuth_wrong_password() {
@SneakyThrows
@ParameterizedTest
@ValueSource(booleans = {true, false})
public void test_update_connection_password_connection_lost_before_password_update(
public void update_connection_password_connection_lost_before_password_update(
boolean immediateAuth) {
GlideClient adminClient = GlideClient.createClient(commonClientConfig().build()).get();
var pwd = UUID.randomUUID().toString();
Expand Down

0 comments on commit ea5e75f

Please sign in to comment.