From ddc426cb8851c551a79b6872929ced532c3af207 Mon Sep 17 00:00:00 2001 From: Anyqax Date: Tue, 14 Jun 2016 12:55:22 +0200 Subject: [PATCH] Fix incorrect method argument order --- src/Prophecy/Argument/Token/ObjectStateToken.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Prophecy/Argument/Token/ObjectStateToken.php b/src/Prophecy/Argument/Token/ObjectStateToken.php index 8d93bfd..d771077 100644 --- a/src/Prophecy/Argument/Token/ObjectStateToken.php +++ b/src/Prophecy/Argument/Token/ObjectStateToken.php @@ -61,11 +61,11 @@ public function scoreArgument($argument) $actual = call_user_func(array($argument, $this->name)); $comparator = $this->comparatorFactory->getComparatorFor( - $actual, $this->value + $this->value, $actual ); try { - $comparator->assertEquals($actual, $this->value); + $comparator->assertEquals($this->value, $actual); return 8; } catch (ComparisonFailure $failure) { return false;