@@ -81,7 +81,7 @@ public function testAffectedRowsAfterEnableFoundRowsWithNoChange(): void
8181
8282 $ affectedRows = $ db1 ->affectedRows ();
8383
84- $ this ->assertSame ($ affectedRows , 2 );
84+ $ this ->assertSame (2 , $ affectedRows );
8585 }
8686
8787 public function testAffectedRowsAfterDisableFoundRowsWithNoChange (): void
@@ -97,7 +97,7 @@ public function testAffectedRowsAfterDisableFoundRowsWithNoChange(): void
9797
9898 $ affectedRows = $ db1 ->affectedRows ();
9999
100- $ this ->assertSame ($ affectedRows , 0 );
100+ $ this ->assertSame (0 , $ affectedRows );
101101 }
102102
103103 public function testAffectedRowsAfterEnableFoundRowsWithChange (): void
@@ -113,7 +113,7 @@ public function testAffectedRowsAfterEnableFoundRowsWithChange(): void
113113
114114 $ affectedRows = $ db1 ->affectedRows ();
115115
116- $ this ->assertSame ($ affectedRows , 2 );
116+ $ this ->assertSame (2 , $ affectedRows );
117117 }
118118
119119 public function testAffectedRowsAfterDisableFoundRowsWithChange (): void
@@ -129,7 +129,7 @@ public function testAffectedRowsAfterDisableFoundRowsWithChange(): void
129129
130130 $ affectedRows = $ db1 ->affectedRows ();
131131
132- $ this ->assertSame ($ affectedRows , 2 );
132+ $ this ->assertSame (2 , $ affectedRows );
133133 }
134134
135135 public function testAffectedRowsAfterEnableFoundRowsWithPartialChange (): void
@@ -145,7 +145,7 @@ public function testAffectedRowsAfterEnableFoundRowsWithPartialChange(): void
145145
146146 $ affectedRows = $ db1 ->affectedRows ();
147147
148- $ this ->assertSame ($ affectedRows , 2 );
148+ $ this ->assertSame (2 , $ affectedRows );
149149 }
150150
151151 public function testAffectedRowsAfterDisableFoundRowsWithPartialChange (): void
@@ -161,6 +161,6 @@ public function testAffectedRowsAfterDisableFoundRowsWithPartialChange(): void
161161
162162 $ affectedRows = $ db1 ->affectedRows ();
163163
164- $ this ->assertSame ($ affectedRows , 1 );
164+ $ this ->assertSame (1 , $ affectedRows );
165165 }
166166}
0 commit comments