summaryrefslogtreecommitdiff
path: root/cli/tests/integration_tests.rs
diff options
context:
space:
mode:
authorali ahmed <48116123+AliBasicCoder@users.noreply.github.com>2021-01-24 21:08:01 +0200
committerGitHub <noreply@github.com>2021-01-24 20:08:01 +0100
commitfeff6361b1247c82bb86aedfea349b04899b9610 (patch)
tree0a1c92f59d8492c067d0793169c28945f969b2a4 /cli/tests/integration_tests.rs
parentad60e750d75471d7c7f31f9f40ff233a29aba332 (diff)
feat(op_crates/web): adding gb18030 and GBK encodings (#9242)
Diffstat (limited to 'cli/tests/integration_tests.rs')
-rw-r--r--cli/tests/integration_tests.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/tests/integration_tests.rs b/cli/tests/integration_tests.rs
index 16d3a210c..40a23bcfa 100644
--- a/cli/tests/integration_tests.rs
+++ b/cli/tests/integration_tests.rs
@@ -5306,7 +5306,9 @@ fn web_platform_tests() {
});
let testharness_path = util::wpt_path().join("resources/testharness.js");
- let testharness_text = std::fs::read_to_string(&testharness_path).unwrap();
+ let testharness_text = std::fs::read_to_string(&testharness_path)
+ .unwrap()
+ .replace("output:true", "output:false");
let testharnessreporter_path =
util::tests_path().join("wpt_testharnessconsolereporter.js");
let testharnessreporter_text =