Fix incorrect locale format in test

This commit is contained in:
dotasek 2024-07-31 12:11:12 -04:00
parent fb6f237d23
commit c3b89f7808
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class InstanceValidatorTests {
@Test
public void testCheckCodeOnServerNoStackLocale() throws InstanceValidator.CheckCodeOnServerException {
NodeStack stack =mock(NodeStack.class);
testCheckCodeOnServer(stack, "ko_KR");
testCheckCodeOnServer(stack, "ko-KR");
}
@Test