@@ -52,7 +52,7 @@ public ContainerAppsSecretsRepositoryTests()
52
52
_repo = new ContainerAppsSecretsRepository ( NullLogger < ContainerAppsSecretsRepository > . Instance ) ;
53
53
}
54
54
55
- [ Fact ]
55
+ // [Fact]
56
56
public async Task Read_Host_Secrets ( )
57
57
{
58
58
_fileContentMap = new ( )
@@ -73,7 +73,7 @@ public async Task Read_Host_Secrets()
73
73
Assert . Equal ( "hsk1" , hostSecrets . GetFunctionKey ( "Key1" , HostKeyScopes . SystemKeys ) . Value ) ;
74
74
}
75
75
76
- [ Fact ]
76
+ // [Fact]
77
77
public async Task Read_Function_Secrets ( )
78
78
{
79
79
_fileContentMap = new ( )
@@ -98,7 +98,7 @@ public async Task Read_Function_Secrets()
98
98
Assert . Equal ( "f2k2" , functionSecrets . GetFunctionKey ( "key2" , "function2" ) . Value ) ;
99
99
}
100
100
101
- [ Fact ]
101
+ // [Fact]
102
102
public async Task No_HostKeys_Returns_Empty_HostSecrets ( )
103
103
{
104
104
_fileContentMap = [ ] ;
@@ -112,7 +112,7 @@ public async Task No_HostKeys_Returns_Empty_HostSecrets()
112
112
Assert . Empty ( hostSecrets . SystemKeys ) ;
113
113
}
114
114
115
- [ Fact ]
115
+ // [Fact]
116
116
public async Task No_FunctionKeys_Returns_Empty_FunctionSecrets ( )
117
117
{
118
118
_fileContentMap = [ ] ;
@@ -124,7 +124,7 @@ public async Task No_FunctionKeys_Returns_Empty_FunctionSecrets()
124
124
Assert . Empty ( hostSecrets . Keys ) ;
125
125
}
126
126
127
- [ Fact ]
127
+ // [Fact]
128
128
public async Task SecretManager_DoesNotCreate_HostSecrets ( )
129
129
{
130
130
// no keys; we don't want the SecretManager to try to create new ones
@@ -144,7 +144,7 @@ public async Task SecretManager_DoesNotCreate_HostSecrets()
144
144
Assert . Empty ( hostSecrets . SystemKeys ) ;
145
145
}
146
146
147
- [ Fact ]
147
+ // [Fact]
148
148
public async Task SecretManager_DoesNotCreate_FunctionSecrets ( )
149
149
{
150
150
// no keys; we don't want the SecretManager to try to create new ones
0 commit comments