@@ -23,7 +23,7 @@ public PowerShellInvokerTests(PowerShellInvokerTests.Fixture fixture)
23
23
public void GetScript ( )
24
24
{
25
25
string result = PowerShellFunctionInvoker . GetScript ( _fixture . TestScriptPath ) ;
26
- Assert . Equal ( _fixture . TestScripContent , result . Trim ( ) , StringComparer . OrdinalIgnoreCase ) ;
26
+ Assert . Equal ( _fixture . TestScriptContent , result . Trim ( ) , StringComparer . OrdinalIgnoreCase ) ;
27
27
}
28
28
29
29
[ Fact ]
@@ -85,7 +85,7 @@ public class Fixture : IDisposable
85
85
{
86
86
public Fixture ( )
87
87
{
88
- TestScripContent = "This is a test script." ;
88
+ TestScriptContent = "This is a test script." ;
89
89
TestFunctionName = "TestFunction" ;
90
90
TestRootScriptPath = Path . Combine ( TestHelpers . FunctionsTestDirectory , "Functions" ) ;
91
91
TestFunctionRoot = Path . Combine ( TestRootScriptPath , TestFunctionName ) ;
@@ -109,7 +109,7 @@ public Fixture()
109
109
110
110
public string TestScriptPath { get ; private set ; }
111
111
112
- public string TestScripContent { get ; private set ; }
112
+ public string TestScriptContent { get ; private set ; }
113
113
114
114
public string TestFunctionName { get ; private set ; }
115
115
@@ -147,7 +147,7 @@ public string CreateScriptFile(string scriptRoot)
147
147
// Create a file to write to.
148
148
using ( StreamWriter sw = File . CreateText ( path ) )
149
149
{
150
- sw . WriteLine ( TestScripContent ) ;
150
+ sw . WriteLine ( TestScriptContent ) ;
151
151
}
152
152
}
153
153
0 commit comments