@@ -136,7 +136,7 @@ public async Task Scenario_BindingData()
136
136
await Fixture . Host . CallAsync ( "Scenarios" , arguments ) ;
137
137
}
138
138
139
- [ Fact ( Skip = "Issues with how log entry objecs are serialized (see https://github.com/Azure/azure-webjobs-sdk-script/issues/2020" ) ]
139
+ [ Fact ]
140
140
public async Task Scenario_Logging ( )
141
141
{
142
142
// Sleep to make sure all logs from other "Scenarios" tests have flushed before
@@ -184,12 +184,12 @@ await TestHelpers.Await(() =>
184
184
Assert . Equal ( "loglevel error" , traces [ 4 ] . Message ) ;
185
185
186
186
// verify most of the logs look correct
187
- Assert . EndsWith ( "Mathew Charles" , logs [ 3 ] ) ;
188
- Assert . EndsWith ( "null" , logs [ 4 ] ) ;
189
- Assert . EndsWith ( "1234" , logs [ 5 ] ) ;
190
- Assert . EndsWith ( "true" , logs [ 6 ] ) ;
191
- Assert . EndsWith ( "loglevel default" , logs [ 7 ] ) ;
192
- Assert . EndsWith ( "loglevel info" , logs [ 8 ] ) ;
187
+ Assert . EndsWith ( "Mathew Charles" , logs [ 4 ] ) ;
188
+ Assert . EndsWith ( "null" , logs [ 5 ] ) ;
189
+ Assert . EndsWith ( "1234" , logs [ 6 ] ) ;
190
+ Assert . EndsWith ( "true" , logs [ 7 ] ) ;
191
+ Assert . EndsWith ( "loglevel default" , logs [ 8 ] ) ;
192
+ Assert . EndsWith ( "loglevel info" , logs [ 9 ] ) ;
193
193
}
194
194
195
195
private async Task < CloudBlobContainer > GetEmptyContainer ( string containerName )
0 commit comments