@@ -37,8 +37,8 @@ public async Task GitHubPage_Is_Initialized()
37
37
38
38
[ TestCase ( "https://github.com" , null , false , 0 ) ]
39
39
[ TestCase ( "https://enterprise.com" , null , false , 1 ) ]
40
- [ TestCase ( "https://github.com" , null , true , 2 , Description = "Show URL tab for GitHub connections" ) ]
41
- [ TestCase ( "https://enterprise.com" , null , true , 2 , Description = "Show URL tab for Enterprise connections" ) ]
40
+ [ TestCase ( "https://github.com" , null , true , 0 , Description = "Show URL tab for GitHub connections" ) ]
41
+ [ TestCase ( "https://enterprise.com" , null , true , 1 , Description = "Show URL tab for Enterprise connections" ) ]
42
42
[ TestCase ( "https://github.com" , "https://github.com/github/visualstudio" , false , 2 ) ]
43
43
[ TestCase ( "https://enterprise.com" , "https://enterprise.com/owner/repo" , false , 2 ) ]
44
44
public async Task Default_SelectedTabIndex_For_Group ( string address , string clipboardUrl , bool isGroupA , int expectTabIndex )
@@ -56,8 +56,8 @@ public async Task Default_SelectedTabIndex_For_Group(string address, string clip
56
56
57
57
[ TestCase ( "https://github.com" , false , 1 , nameof ( UsageModel . MeasuresModel . NumberOfCloneViewGitHubTab ) ) ]
58
58
[ TestCase ( "https://enterprise.com" , false , 1 , nameof ( UsageModel . MeasuresModel . NumberOfCloneViewEnterpriseTab ) ) ]
59
- [ TestCase ( "https://github.com" , true , 1 , nameof ( UsageModel . MeasuresModel . NumberOfCloneViewUrlTab ) ) ]
60
- [ TestCase ( "https://enterprise.com" , true , 1 , nameof ( UsageModel . MeasuresModel . NumberOfCloneViewUrlTab ) ) ]
59
+ [ TestCase ( "https://github.com" , true , 1 , nameof ( UsageModel . MeasuresModel . NumberOfCloneViewGitHubTab ) ) ]
60
+ [ TestCase ( "https://enterprise.com" , true , 1 , nameof ( UsageModel . MeasuresModel . NumberOfCloneViewEnterpriseTab ) ) ]
61
61
public async Task IncrementCounter_Showing_Default_Tab ( string address , bool isGroupA , int numberOfCalls , string counterName )
62
62
{
63
63
var cm = CreateConnectionManager ( address ) ;
0 commit comments