From 6f145ecd5168010436977dde795334f229c23788 Mon Sep 17 00:00:00 2001 From: Ian Morland Date: Mon, 6 Nov 2023 09:43:06 +0000 Subject: [PATCH] describe what the data provider is doing --- tests/integration/api/MergeTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/api/MergeTest.php b/tests/integration/api/MergeTest.php index cde0f04..164822b 100644 --- a/tests/integration/api/MergeTest.php +++ b/tests/integration/api/MergeTest.php @@ -186,8 +186,8 @@ public function cannot_merge_discussion_with_invalid_data(int $to, int $from, in public function discussionMergeData(): array { return [ - [1, 2], - [2, 1], + [1, 2], // Merging newer discussion into older + [2, 1], // Merging older discussion into newer ]; }