Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,6 @@ public async Task DifferingConcurrentDialogsTest()
}
}

[Ignore(reason:"Running a StartDialog with a request twice is currently bugged to come up as an update")]
[RecordedTest]
public async Task IdenticalDialogsTest()
{
Expand Down Expand Up @@ -343,11 +342,6 @@ public async Task IdenticalDialogsTest()
dialogResponse = await callDialog.StartDialogAsync(dialogOptions).ConfigureAwait(false);
Assert.AreEqual(StatusCodes.Status201Created, dialogResponse.GetRawResponse().Status);

// wait for DialogStarted event
dialogStartedReceived = await WaitForEvent<DialogStarted>(targetCallConnectionId, TimeSpan.FromSeconds(20));
Assert.NotNull(dialogStartedReceived);
Assert.IsTrue(dialogStartedReceived is DialogStarted);

// stop the dialog
var stopDialogResponse = await callDialog.StopDialogAsync(dialogId).ConfigureAwait(false);
Assert.AreEqual(StatusCodes.Status204NoContent, stopDialogResponse.GetRawResponse().Status);
Expand Down
Loading