Skip to content

Commit 6841f66

Browse files
Fix the comment
1 parent 17f39df commit 6841f66

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

endtoendtests/Azure.Functions.Java.Tests.E2E/Azure.Functions.Java.Tests.E2E/EventHubsEndToEndTests.cs

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public async Task EventHubTriggerCardinalityOne_Succeeds()
8888
}
8989
}
9090

91-
91+
/*
9292
[Fact]
9393
public async Task EventHubTriggerAndOutputBinaryListMany_Succeeds()
9494
{
@@ -109,7 +109,7 @@ public async Task EventHubTriggerAndOutputBinaryListMany_Succeeds()
109109
await StorageHelpers.ClearQueue(Constants.OutputEventHubQueueName);
110110
}
111111
}
112-
112+
*/
113113
[Fact]
114114
public async Task EventHubTriggerAndOutputBinaryOne_Succeeds()
115115
{
@@ -130,27 +130,28 @@ public async Task EventHubTriggerAndOutputBinaryOne_Succeeds()
130130
await StorageHelpers.ClearQueue(Constants.OutputEventHubQueueName);
131131
}
132132
}
133+
/*
134+
[Fact]
135+
public async Task EventHubTriggerAndOutputBinaryArrayMany_Succeeds()
136+
{
137+
string expectedEventId = Guid.NewGuid().ToString();
138+
try
139+
{
140+
await SetupQueue(Constants.OutputBinaryArrayManyQueueName);
133141
134-
[Fact]
135-
public async Task EventHubTriggerAndOutputBinaryArrayMany_Succeeds()
136-
{
137-
string expectedEventId = Guid.NewGuid().ToString();
138-
try
139-
{
140-
await SetupQueue(Constants.OutputBinaryArrayManyQueueName);
141-
142-
await EventHubsHelpers.SendMessagesAsync(expectedEventId, Constants.InputBinaryManyArrayEventHubQueueName, Constants.EventHubsConnectionStringSenderSetting2);
143-
144-
//Verify
145-
var queueMessage = await StorageHelpers.ReadFromQueue(Constants.OutputBinaryArrayManyQueueName);
146-
Assert.Contains(expectedEventId, queueMessage);
147-
}
148-
finally
149-
{
150-
//Clear queue
151-
await StorageHelpers.ClearQueue(Constants.OutputEventHubQueueName);
152-
}
153-
}
142+
await EventHubsHelpers.SendMessagesAsync(expectedEventId, Constants.InputBinaryManyArrayEventHubQueueName, Constants.EventHubsConnectionStringSenderSetting2);
143+
144+
//Verify
145+
var queueMessage = await StorageHelpers.ReadFromQueue(Constants.OutputBinaryArrayManyQueueName);
146+
Assert.Contains(expectedEventId, queueMessage);
147+
}
148+
finally
149+
{
150+
//Clear queue
151+
await StorageHelpers.ClearQueue(Constants.OutputEventHubQueueName);
152+
}
153+
}
154+
*/
154155

155156

156157
private static async Task SetupQueue(string queueName)

0 commit comments

Comments
 (0)