diff --git a/components/hello-world/src/test/Main.test.ts b/components/hello-world/src/test/Main.test.ts index 656372c..ed819fb 100644 --- a/components/hello-world/src/test/Main.test.ts +++ b/components/hello-world/src/test/Main.test.ts @@ -10,14 +10,14 @@ describe("Hello-World Component Tests", async () => { #if "VARIANT" == "MAC" expect(variantType).to.equal("Mac"); - expect(msgString).to.equal("*** Mac platform --> Hello-World ***"); + expect(msgString).to.equal("*** Mac platform --> Hello-World Naveed***"); #elif "VARIANT" == "LINUX" expect(variantType).to.equal("Linux"); - expect(msgString).to.equal("*** Linux platform --> Hello-World ***"); + expect(msgString).to.equal("*** Linux platform --> Hello-World Naveed***"); #else expect(variantType).to.equal("Windows"); - expect(msgString).to.equal("*** Windows platform --> Hello-World ***"); + expect(msgString).to.equal("*** Windows platform --> Hello-World Naveed***"); #endif DisplayMsg(msgString); }); - }); \ No newline at end of file + });