Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public void testGetExtensionFilesToLoad_non_exist_extensions_dir() throws IOExce
final File tmpDir = temporaryFolder.newFolder();
Assert.assertTrue("could not create missing folder", !tmpDir.exists() || tmpDir.delete());
Assert.assertArrayEquals(
"Non-exist root extensionsDir should return emply array of File",
"Non-exist root extensionsDir should return an empty array of File",
new File[]{},
Initialization.getExtensionFilesToLoad(new ExtensionsConfig(){
@Override
Expand Down Expand Up @@ -233,7 +233,7 @@ public String getDirectory()
};

Assert.assertArrayEquals(
"Empty root extensionsDir should return emply array of File",
"Empty root extensionsDir should return an empty array of File",
new File[]{},
Initialization.getExtensionFilesToLoad(config)
);
Expand Down