Skip to content

Commit f55432a

Browse files
Merge pull request #39 from TCourtneyOwen/minor-test-fix
Minor fix to address issue when converting to single host
2 parents ab330d6 + de1bb5f commit f55432a

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)