Skip to content

Commit

Permalink
Fix catalog test on Windows OS
Browse files Browse the repository at this point in the history
Signed-off-by: azerr <[email protected]>
  • Loading branch information
angelozerr authored and xorye committed Jun 23, 2020
1 parent 2dafd72 commit d102a4c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
package org.eclipse.lemminx.services;

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedHashSet;

import org.eclipse.lemminx.client.PathFeature;
import org.eclipse.lemminx.client.InvalidPathWarner;
import org.eclipse.lemminx.client.PathFeature;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

Expand Down Expand Up @@ -178,6 +178,6 @@ public void testSendMessageEvict() {

private void sendNotification(String... invalidPaths) {
this.pathWarner
.onInvalidFilePath(new HashSet<String>(Arrays.asList(invalidPaths)), TEST_FEATURE);
.onInvalidFilePath(new LinkedHashSet<String>(Arrays.asList(invalidPaths)), TEST_FEATURE);
}
}

0 comments on commit d102a4c

Please sign in to comment.