Skip to content

Commit 9ba5d6f

Browse files
Shivangi Guptashipilev
authored andcommitted
8374433: java/util/Locale/PreserveTagCase.java does not run any tests
Reviewed-by: djelinski Backport-of: 136ac0d
1 parent 0981794 commit 9ba5d6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/jdk/java/util/Locale/PreserveTagCase.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2026, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -53,7 +53,7 @@ public class PreserveTagCase {
5353
*/
5454
@ParameterizedTest
5555
@MethodSource("filterProvider")
56-
public static void testFilterTags(String ranges, List<String> tags,
56+
public void testFilterTags(String ranges, List<String> tags,
5757
List<String> expected, FilteringMode mode) {
5858
List<LanguageRange> priorityList = LanguageRange.parse(ranges);
5959
List<String> actual = Locale.filterTags(priorityList, tags, mode);
@@ -67,7 +67,7 @@ public static void testFilterTags(String ranges, List<String> tags,
6767
*/
6868
@ParameterizedTest
6969
@MethodSource("lookupProvider")
70-
public static void testLookupTag(String ranges, List<String> tags,
70+
public void testLookupTag(String ranges, List<String> tags,
7171
String expected) {
7272
List<LanguageRange> priorityList = LanguageRange.parse(ranges);
7373
String actual = Locale.lookupTag(priorityList, tags);

0 commit comments

Comments
 (0)