File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/eatda/controller/cheer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ class RegisterCheer {
4242 assertAll (
4343 () -> assertThat (response .storeId ()).isEqualTo (store .getId ()),
4444 () -> assertThat (response .cheerDescription ()).isEqualTo (request .description ()),
45- () -> assertThat (response .tags ()).containsAll (request .tags ())
45+ () -> assertThat (response .tags ()).containsExactlyInAnyOrderElementsOf (request .tags ())
4646 );
4747 }
4848
@@ -65,7 +65,7 @@ class RegisterCheer {
6565 assertAll (
6666 () -> assertThat (response .storeId ()).isEqualTo (store .getId ()),
6767 () -> assertThat (response .cheerDescription ()).isEqualTo (request .description ()),
68- () -> assertThat (response .tags ()).containsAll (request .tags ())
68+ () -> assertThat (response .tags ()).containsExactlyInAnyOrderElementsOf (request .tags ())
6969 );
7070 }
7171 }
You can’t perform that action at this time.
0 commit comments