Commit 3f11d15b authored by Michael Droettboom's avatar Michael Droettboom

LINT

parent 7f3027b6
......@@ -53,18 +53,16 @@ var languagePluginLoader = new Promise((resolve, reject) => {
if (package in loadedPackages) {
if (package_uri != loadedPackages[package]) {
console.error(
`URI mismatch, attempting to load package ` +
`${package} from ${package_uri} while it is already ` +
`loaded from ${loadedPackages[package]}!`);
console.error(`URI mismatch, attempting to load package ` +
`${package} from ${package_uri} while it is already ` +
`loaded from ${loadedPackages[package]}!`);
return;
}
} else if (package in toLoad) {
if (package_uri != toLoad[package]) {
console.error(
`URI mismatch, attempting to load package ` +
`${package} from ${package_uri} while it is already ` +
`being loaded from ${toLoad[package]}!`);
console.error(`URI mismatch, attempting to load package ` +
`${package} from ${package_uri} while it is already ` +
`being loaded from ${toLoad[package]}!`);
return;
}
} else {
......
import pytest
from selenium.common.exceptions import WebDriverException
def test_load_from_url(selenium_standalone, web_server):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment