@@ -2312,7 +2312,7 @@ Uh-Oh - The Tag filters between v4 and v5 are not the same somehow.
2312
2312
For v4 We returned
2313
2313
{0}
2314
2314
and
2315
- For v5 we returned
2315
+ for v4 we returned
2316
2316
{1}
2317
2317
" -f ($v4code.TagFilter | Out-String ), ($v5code.Configuration.Filter.Tag.Value | Out-String )
2318
2318
Write-PSFMessage - Message $Message - Level Warning
@@ -2325,47 +2325,54 @@ The Tags are the same"
2325
2325
$changedTags = @ (
2326
2326
@ {
2327
2327
Name = ' TraceFlagsExpected'
2328
- RunChange = 3 # + or - the number of tests run for v5
2329
- PassedChange = 3 # + or - the number of tests passed for v5
2330
- FailedChange = 0 # + or - the number of tests failed for v5
2331
- SkippedChange = 0 # + or - the number of tests skipped for v5
2328
+ RunChange = 3 # + or - the number of tests run for v4
2329
+ PassedChange = 3 # + or - the number of tests passed for v4
2330
+ FailedChange = 0 # + or - the number of tests failed for v4
2331
+ SkippedChange = 0 # + or - the number of tests skipped for v4
2332
2332
2333
2333
},
2334
2334
@ {
2335
2335
Name = ' TraceFlagsNotExpected'
2336
- RunChange = 3 # + or - the number of tests for v5
2337
- PassedChange = 3 # + or - the number of tests passed for v5
2338
- FailedChange = 0 # + or - the number of tests failed for v5
2339
- SkippedChange = 0 # + or - the number of tests skipped for v5
2336
+ RunChange = 3 # + or - the number of tests for v4
2337
+ PassedChange = 3 # + or - the number of tests passed for v4
2338
+ FailedChange = 0 # + or - the number of tests failed for v4
2339
+ SkippedChange = 0 # + or - the number of tests skipped for v4
2340
2340
},
2341
2341
@ {
2342
2342
Name = ' XESessionRunningAllowed'
2343
- RunChange = -12 # + or - the number of tests for v5
2344
- PassedChange = 0 # + or - the number of tests passed for v5
2345
- FailedChange = -12 # + or - the number of tests failed for v5
2346
- SkippedChange = 0 # + or - the number of tests skipped for v5
2343
+ RunChange = -12 # + or - the number of tests for v4
2344
+ PassedChange = 0 # + or - the number of tests passed for v4
2345
+ FailedChange = -12 # + or - the number of tests failed for v4
2346
+ SkippedChange = 0 # + or - the number of tests skipped for v4
2347
2347
},
2348
2348
@ {
2349
2349
Name = ' LinkedServerConnection'
2350
- RunChange = -3 # + or - the number of tests for v5
2351
- PassedChange = -3 # + or - the number of tests passed for v5
2352
- FailedChange = 0 # + or - the number of tests failed for v5
2353
- SkippedChange = 0 # + or - the number of tests skipped for v5
2350
+ RunChange = -3 # + or - the number of tests for v4
2351
+ PassedChange = -3 # + or - the number of tests passed for v4
2352
+ FailedChange = 0 # + or - the number of tests failed for v4
2353
+ SkippedChange = 0 # + or - the number of tests skipped for v4
2354
2354
},
2355
2355
@ {
2356
2356
Name = ' SupportedBuild'
2357
- RunChange = -3 # + or - the number of tests run for v5
2358
- PassedChange = -3 # + or - the number of tests passed for v5
2359
- FailedChange = 0 # + or - the number of tests failed for v5
2360
- SkippedChange = 0 # + or - the number of tests skipped for v5
2357
+ RunChange = -3 # + or - the number of tests run for v4
2358
+ PassedChange = -3 # + or - the number of tests passed for v4
2359
+ FailedChange = 0 # + or - the number of tests failed for v4
2360
+ SkippedChange = 0 # + or - the number of tests skipped for v4
2361
2361
},
2362
2362
@ {
2363
2363
Name = ' GuestUserConnect'
2364
- RunChange = 0 # + or - the number of tests run for v5
2365
- PassedChange = +2 # + or - the number of tests passed for v5
2366
- FailedChange = -2 # + or - the number of tests failed for v5
2367
- SkippedChange = 0 # + or - the number of tests skipped for v5
2364
+ RunChange = 0 # + or - the number of tests run for v4
2365
+ PassedChange = +2 # + or - the number of tests passed for v4
2366
+ FailedChange = -2 # + or - the number of tests failed for v4
2367
+ SkippedChange = 0 # + or - the number of tests skipped for v4
2368
2368
},
2369
+ @ {
2370
+ Name = ' AgentServiceAccount'
2371
+ RunChange = -3 # + or - the number of tests run for v4
2372
+ PassedChange = -5 # + or - the number of tests passed for v4
2373
+ FailedChange = -1 # + or - the number of tests failed for v4
2374
+ SkippedChange = +3 # + or - the number of tests skipped for v4
2375
+ },
2369
2376
@ {
2370
2377
Name = ' SqlEngineServiceAccount'
2371
2378
RunChange = -3 # + or - the number of tests run for v5
@@ -2407,7 +2414,7 @@ Uh-Oh - The total tests run between v4 and v5 are not the same somehow.
2407
2414
For v4 We ran
2408
2415
{0} tests
2409
2416
and
2410
- For v5 we ran
2417
+ for v4 we ran
2411
2418
{1} tests
2412
2419
The MOST COMMON REASON IS you have used Tags instead of Tag in your Describe block {2}
2413
2420
" -f $v4code.TotalCount , $v5run , $messageAppend
@@ -2427,7 +2434,7 @@ Uh-Oh - The total tests Passed between v4 and v5 are not the same somehow.
2427
2434
For v4 We Passed
2428
2435
{0} tests
2429
2436
and
2430
- For v5 we Passed
2437
+ for v4 we Passed
2431
2438
{1} tests
2432
2439
{2}
2433
2440
@@ -2454,7 +2461,7 @@ Uh-Oh - The total tests Failed between v4 and v5 are not the same somehow.
2454
2461
For v4 We Failed
2455
2462
{0} tests
2456
2463
and
2457
- For v5 we Failed
2464
+ for v4 we Failed
2458
2465
{1} tests
2459
2466
2460
2467
" -f $v4code.FailedCount , $v5Failed , $messageAppend
0 commit comments