fix failing WolfSSLX509 altName test, reverse order needed

pull/68/head
Chris Conlon 2021-09-23 11:39:16 -06:00
parent 42d210ec0d
commit e9ee12ec05
1 changed files with 7 additions and 7 deletions

View File

@ -558,14 +558,14 @@ public class WolfSSLX509Test {
/* populate known alt name list for example.com cert, for comparison */
List<String> expected = new ArrayList<>();
expected.add("www.example.net");
expected.add("www.example.edu");
expected.add("www.example.com");
expected.add("example.org");
expected.add("example.net");
expected.add("example.edu");
expected.add("example.com");
expected.add("www.example.org");
expected.add("example.com");
expected.add("example.edu");
expected.add("example.net");
expected.add("example.org");
expected.add("www.example.com");
expected.add("www.example.edu");
expected.add("www.example.net");
/* list to hold found altNames */
List<String> found = new ArrayList<>();