File tree Expand file tree Collapse file tree 3 files changed +6
-17
lines changed
sdk/batch/Microsoft.Azure.Batch Expand file tree Collapse file tree 3 files changed +6
-17
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ await SynchronizationContextHelper.RunTestAsync(async () =>
467467 batchCli ,
468468 testName ,
469469 311 ,
470- timeout : TimeSpan . FromSeconds ( 1 ) ,
470+ timeout : TimeSpan . FromSeconds ( - 1 ) ,
471471 useJobOperations : useJobOperations ) . ConfigureAwait ( false ) ) . ConfigureAwait ( false ) ;
472472
473473 Assert . IsType < TimeoutException > ( exception . InnerException ) ;
Original file line number Diff line number Diff line change @@ -53,11 +53,11 @@ public void TestComputeNodeCertificateReferencesAreReadOnly()
5353 CertificateReference computeNodeCertificateReference = computeNode . CertificateReferences . First ( ) ;
5454
5555 // reads are allowed
56- this . testOutputHelper . WriteLine ( "{0}" , computeNodeCertificateReference . StoreLocation ) ;
57- this . testOutputHelper . WriteLine ( "{0}" , computeNodeCertificateReference . StoreName ) ;
58- this . testOutputHelper . WriteLine ( "{0}" , computeNodeCertificateReference . Thumbprint ) ;
59- this . testOutputHelper . WriteLine ( "{0}" , computeNodeCertificateReference . ThumbprintAlgorithm ) ;
60- this . testOutputHelper . WriteLine ( "{0}" , computeNodeCertificateReference . Visibility ) ;
56+ this . testOutputHelper . WriteLine ( computeNodeCertificateReference . StoreLocation . ToString ( ) ) ;
57+ this . testOutputHelper . WriteLine ( computeNodeCertificateReference . StoreName ) ;
58+ this . testOutputHelper . WriteLine ( computeNodeCertificateReference . Thumbprint ) ;
59+ this . testOutputHelper . WriteLine ( computeNodeCertificateReference . ThumbprintAlgorithm ) ;
60+ this . testOutputHelper . WriteLine ( computeNodeCertificateReference . Visibility . ToString ( ) ) ;
6161
6262 // writes are foribdden
6363 Assert . Throws < InvalidOperationException > ( ( ) => { computeNodeCertificateReference . StoreLocation = CertStoreLocation . CurrentUser ; } ) ;
You can’t perform that action at this time.
0 commit comments