File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/ServiceManagement/Services/Commands.Test/CloudService/Utilities Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
// limitations under the License.
13
13
// ----------------------------------------------------------------------------------
14
14
15
-
15
+ using System ;
16
16
using System . IO ;
17
17
using Microsoft . WindowsAzure . Commands . ScenarioTest ;
18
18
using Xunit ;
@@ -31,7 +31,7 @@ public class GeneralTests : SMTestBase
31
31
public void SerializationTestWithGB18030 ( )
32
32
{
33
33
// Setup
34
- string outputFileName = "outputFile.txt" ;
34
+ string outputFileName = Path . Combine ( AppDomain . CurrentDomain . BaseDirectory , "outputFile.txt" ) ;
35
35
ServiceDefinition serviceDefinition = XmlUtilities . DeserializeXmlFile < ServiceDefinition > (
36
36
Testing . GetTestResourcePath ( "GB18030ServiceDefinition.csdef" ) ) ;
37
37
@@ -45,4 +45,4 @@ public void SerializationTestWithGB18030()
45
45
Assert . True ( data [ 0 ] == 0xff && data [ 1 ] == 0xfe ) ;
46
46
}
47
47
}
48
- }
48
+ }
You can’t perform that action at this time.
0 commit comments