Skip to content

Commit

Permalink
Use method name as username for testTimeZone
Browse files Browse the repository at this point in the history
  • Loading branch information
bear101 committed Oct 19, 2024
1 parent 4fc0fa6 commit 13e5333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/TeamTalkJNI/test/dk/bearware/TeamTalkTestCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -4526,7 +4526,7 @@ public void testUserAcountLastLogin() {

@Test
public void testTimeZone() {
final String USERNAME = "tt_test", PASSWORD = "tt_test", NICKNAME = "jUnit - " + getTestMethodName();
final String USERNAME = getTestMethodName(), PASSWORD = "tt_test", NICKNAME = "jUnit - " + getTestMethodName();
int USERRIGHTS = UserRight.USERRIGHT_TRANSMIT_MEDIAFILE | UserRight.USERRIGHT_CREATE_TEMPORARY_CHANNEL;
makeUserAccount(NICKNAME, USERNAME, PASSWORD, USERRIGHTS);

Expand Down

0 comments on commit 13e5333

Please sign in to comment.