File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
using Microsoft . VisualStudio . TestTools . UnitTesting ;
2
2
using System ;
3
3
using System . Collections . Generic ;
4
+ using System . Net ;
4
5
using System . Threading ;
5
6
6
7
namespace OnTimeGCApi . Test
@@ -13,6 +14,7 @@ public class Main
13
14
[ AssemblyInitialize ( ) ]
14
15
public static void AssemblyInit ( TestContext context )
15
16
{
17
+ ServicePointManager . SecurityProtocol = SecurityProtocolType . Tls | SecurityProtocolType . Tls11 | SecurityProtocolType . Tls12 ;
16
18
Configuration = Settings . Load ( "settings.json" ) ;
17
19
}
18
20
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ public class BaseResult
12
12
13
13
public override string ToString ( )
14
14
{
15
- return $ "{{ Status: { this . Status } | IsAnonymous: { this . IsAnonymous } | ErrorCode: { this . ErrorCode } }}";
15
+ return $ "{{ Status: { this . Status } | IsAnonymous: { this . IsAnonymous } | ErrorCode: { this . ErrorCode } | Error: { this . Error } }}";
16
16
}
17
17
}
18
18
}
Original file line number Diff line number Diff line change 31
31
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
32
32
// übernehmen, indem Sie "*" eingeben:
33
33
// [assembly: AssemblyVersion("1.0.*")]
34
- [ assembly: AssemblyVersion ( "1.3.0 .0" ) ]
35
- [ assembly: AssemblyFileVersion ( "1.3.0 .0" ) ]
34
+ [ assembly: AssemblyVersion ( "1.3.1 .0" ) ]
35
+ [ assembly: AssemblyFileVersion ( "1.3.1 .0" ) ]
You can’t perform that action at this time.
0 commit comments