diff --git a/components/hello-world/src/Main.ts b/components/hello-world/src/Main.ts index f476582..d8225d3 100644 --- a/components/hello-world/src/Main.ts +++ b/components/hello-world/src/Main.ts @@ -21,7 +21,7 @@ export function GetVariantType (): string { */ export function CreateMsgString (): string { const variant = GetVariantType(); - const msgString = "*** " + variant + " platform --> Hello-World ***" + const msgString = "*** " + variant + " platform --> Hello-World Naveed***" return msgString; } 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 + });