Akka.TestKit: EventFilter.And
does not correctly support typed parameters
#6316
Labels
EventFilter.And
does not correctly support typed parameters
#6316
Version Information
Version of Akka.NET? v1.4.47 (and probably most earlier versions)
Which Akka.NET Modules? Akka.TestKit
Describe the bug
Consider the following code sample:
The
DeadLetter
s that should be received should be of typestring
,int
, but the assertion checked forstring
,bool
.Worth noting: if I change the expected type on the first assertion away from
string
to something likeSuspendableActor
this assertion will fail.Expected behavior
The
EventFilter
assertions should type check everything in a composed assertion.Actual behavior
Only the first message in the
EventFilter
expression appears to be properly type-checked.The text was updated successfully, but these errors were encountered: