Skip to content

Commit 28e2fbe

Browse files
author
Christopher Anderson
committed
Bump index numbers back to v1 logging format
1 parent b2f9f22 commit 28e2fbe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/WebJobs.Script.Tests.Integration/NodeEndToEndTests.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public async Task Scenario_BindingData()
136136
await Fixture.Host.CallAsync("Scenarios", arguments);
137137
}
138138

139-
[Fact(Skip = "Issues with how log entry objecs are serialized (see https://github.com/Azure/azure-webjobs-sdk-script/issues/2020")]
139+
[Fact]
140140
public async Task Scenario_Logging()
141141
{
142142
// Sleep to make sure all logs from other "Scenarios" tests have flushed before
@@ -184,12 +184,12 @@ await TestHelpers.Await(() =>
184184
Assert.Equal("loglevel error", traces[4].Message);
185185

186186
// 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]);
193193
}
194194

195195
private async Task<CloudBlobContainer> GetEmptyContainer(string containerName)

0 commit comments

Comments
 (0)