@@ -647,7 +647,7 @@ public async Task FilterExpressionApplicationProperties()
647
647
Assert . Equal ( expected6 , ( string ) m . Property ( "foo" ) ) ;
648
648
}
649
649
650
- msgs = await ConsumeAsync ( messageCount * 4 , options => options . Property ( "foo" , "$ p:b" ) ) ;
650
+ msgs = await ConsumeAsync ( messageCount * 4 , options => options . Property ( "foo" , "& p:b" ) ) ;
651
651
foreach ( IMessage m in msgs )
652
652
{
653
653
Assert . StartsWith ( "b" , ( string ) m . Property ( "foo" ) ) ;
@@ -949,13 +949,13 @@ public async Task FilterExpressionStringModifier()
949
949
await PublishAsync ( q , 1 , ( _ , msg ) => msg . Subject ( "foo bar" ) ) ;
950
950
await PublishAsync ( q , 1 , ( _ , msg ) => msg . Subject ( "ab 12" ) ) ;
951
951
952
- IEnumerable < IMessage > msgs = await ConsumeAsync ( 2 , options => options . Subject ( "$ p:ab" ) ) ;
952
+ IEnumerable < IMessage > msgs = await ConsumeAsync ( 2 , options => options . Subject ( "& p:ab" ) ) ;
953
953
foreach ( IMessage m in msgs )
954
954
{
955
955
Assert . StartsWith ( "ab" , m . Subject ( ) ) ;
956
956
}
957
957
958
- msgs = await ConsumeAsync ( 1 , options => options . Subject ( "$ s:bar" ) ) ;
958
+ msgs = await ConsumeAsync ( 1 , options => options . Subject ( "& s:bar" ) ) ;
959
959
foreach ( IMessage m in msgs )
960
960
{
961
961
Assert . Equal ( "foo bar" , m . Subject ( ) ) ;
0 commit comments