@@ -81,7 +81,7 @@ public function testAffectedRowsAfterEnableFoundRowsWithNoChange(): void
81
81
82
82
$ affectedRows = $ db1 ->affectedRows ();
83
83
84
- $ this ->assertSame ($ affectedRows , 2 );
84
+ $ this ->assertSame (2 , $ affectedRows );
85
85
}
86
86
87
87
public function testAffectedRowsAfterDisableFoundRowsWithNoChange (): void
@@ -97,7 +97,7 @@ public function testAffectedRowsAfterDisableFoundRowsWithNoChange(): void
97
97
98
98
$ affectedRows = $ db1 ->affectedRows ();
99
99
100
- $ this ->assertSame ($ affectedRows , 0 );
100
+ $ this ->assertSame (0 , $ affectedRows );
101
101
}
102
102
103
103
public function testAffectedRowsAfterEnableFoundRowsWithChange (): void
@@ -113,7 +113,7 @@ public function testAffectedRowsAfterEnableFoundRowsWithChange(): void
113
113
114
114
$ affectedRows = $ db1 ->affectedRows ();
115
115
116
- $ this ->assertSame ($ affectedRows , 2 );
116
+ $ this ->assertSame (2 , $ affectedRows );
117
117
}
118
118
119
119
public function testAffectedRowsAfterDisableFoundRowsWithChange (): void
@@ -129,7 +129,7 @@ public function testAffectedRowsAfterDisableFoundRowsWithChange(): void
129
129
130
130
$ affectedRows = $ db1 ->affectedRows ();
131
131
132
- $ this ->assertSame ($ affectedRows , 2 );
132
+ $ this ->assertSame (2 , $ affectedRows );
133
133
}
134
134
135
135
public function testAffectedRowsAfterEnableFoundRowsWithPartialChange (): void
@@ -145,7 +145,7 @@ public function testAffectedRowsAfterEnableFoundRowsWithPartialChange(): void
145
145
146
146
$ affectedRows = $ db1 ->affectedRows ();
147
147
148
- $ this ->assertSame ($ affectedRows , 2 );
148
+ $ this ->assertSame (2 , $ affectedRows );
149
149
}
150
150
151
151
public function testAffectedRowsAfterDisableFoundRowsWithPartialChange (): void
@@ -161,6 +161,6 @@ public function testAffectedRowsAfterDisableFoundRowsWithPartialChange(): void
161
161
162
162
$ affectedRows = $ db1 ->affectedRows ();
163
163
164
- $ this ->assertSame ($ affectedRows , 1 );
164
+ $ this ->assertSame (1 , $ affectedRows );
165
165
}
166
166
}
0 commit comments