Skip to content

Commit de1bb5f

Browse files
committed
Minor fix to address issue when converting to single host
- Without this change, tests will fail for Excel after calling convertToSingleHost with "excel convert-test" params.
1 parent ab330d6 commit de1bb5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ui-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ hosts.forEach(function (host) {
3535
assert.equal(testValues.length > 0, true);
3636
});
3737
it("Validate expected result name", async function () {
38-
assert.equal(testValues[0].resultName, host === "Excel" ? "fill-color" : "output-message");
38+
assert.equal(testValues[0].resultName, host.toLowerCase() === "excel" ? "fill-color" : "output-message");
3939
});
4040
it("Validate expected result", async function () {
4141
assert.equal(testValues[0].resultValue, testValues[0].expectedValue);

0 commit comments

Comments
 (0)