From 763fe2bdbf91935d6296a933a001b089530bd74d Mon Sep 17 00:00:00 2001 From: James Truher Date: Wed, 24 Aug 2016 12:14:39 -0700 Subject: [PATCH] fix missing ";" in Streams.Clear --- test/powershell/Common/TestHostCS.psm1 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/powershell/Common/TestHostCS.psm1 b/test/powershell/Common/TestHostCS.psm1 index c056fd7a9..1496999c1 100755 --- a/test/powershell/Common/TestHostCS.psm1 +++ b/test/powershell/Common/TestHostCS.psm1 @@ -95,15 +95,15 @@ namespace TestHost public ArrayList Progress = new ArrayList(); public ArrayList Prompt = new ArrayList(); public void Clear() { - ConsoleOutput.Clear() - Input.Clear() - Error.Clear() - Verbose.Clear() - Debug.Clear() - Warning.Clear() - Information.Clear() - Progress.Clear() - Prompt.Clear() + ConsoleOutput.Clear(); + Input.Clear(); + Error.Clear(); + Verbose.Clear(); + Debug.Clear(); + Warning.Clear(); + Information.Clear(); + Progress.Clear(); + Prompt.Clear(); } } public class TestPSHostUserInterface : PSHostUserInterface