File tree Expand file tree Collapse file tree
main/java/io/github/eocqrs/kafka/fake
test/java/io/github/eocqrs/kafka/fake Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -74,6 +74,9 @@ public Directives value() throws Exception {
7474 .set (this .key )
7575 .up ()
7676 .addIf ("value" )
77- .set (this .data .dataized ().dataize ());
77+ .set (this .data .dataized ().dataize ())
78+ .up ()
79+ .addIf ("seen" )
80+ .set ("false" );
7881 }
7982}
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ final class DatasetDirsTest {
1717 void dirsInRightFormat () throws Exception {
1818 final String directives = "XPATH \" broker/topics/topic[name = '']\" ;ADDIF "
1919 + "\" datasets\" ;ADD \" dataset\" ;ADD \" partition\" ;\n "
20- + "4:SET \" 0\" ;UP;ADDIF \" key\" ;SET \" test\" ;UP;ADDIF \" value\" ;SET \" \" ;" ;
20+ + "4:SET \" 0\" ;UP;ADDIF \" key\" ;SET \" test\" ;UP;ADDIF \" value\" ;SET \" \" ;"
21+ + "UP;ADDIF \" seen\" ;SET \" false\" ;" ;
2122 MatcherAssert .assertThat (
2223 "Directives in the right format" ,
2324 new DatasetDirs <>(
You can’t perform that action at this time.
0 commit comments