commit af9b4fb354066e660ba777e61d96bb1ba33d8c97
parent 91781b902d3d617560a364504eaf813982f854fe
Author: agoloman <agoloman@mozilla.com>
Date: Thu, 18 Dec 2025 12:34:16 +0200
Bug 2006847 - typo fix in test and in manifest file.
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/netwerk/test/unit/xpcshell.toml b/netwerk/test/unit/xpcshell.toml
@@ -1256,7 +1256,7 @@ skip-if = [
skip-if = [
"os == 'win' && os_version == '11.26100' && arch == 'x86' && socketprocess_networking",
"os == 'win' && os_version == '11.26100' && arch == 'x86_64' && socketprocess_networking",
- "os == 'win' && os_version = '10.2009' && arch == 'x86_64'", #Bug 2006847
+ "os == 'win' && os_version == '10.2009' && arch == 'x86_64'", #Bug 2006847
]
["test_proxy_cancel.js"]
diff --git a/tools/lint/test-manifest-toml/__init__.py b/tools/lint/test-manifest-toml/__init__.py
@@ -119,7 +119,7 @@ def check_condition(results: list, config, path: Path, c: str) -> int:
if c.find("win10_2009") >= 0:
r = make_result(
path,
- "instead of win10_2009 please use os == 'win' && os_version = '10.2009' && arch == 'x86_64'",
+ "instead of win10_2009 please use os == 'win' && os_version == '10.2009' && arch == 'x86_64'",
)
results.append(result.from_config(config, **r))
fixable += 1