Skip to content

Commit 4f33a59

Browse files
Merge branch '11.5' into 12.1
2 parents 807babb + 7d63da7 commit 4f33a59

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

tests/unit/Framework/Assert/assertEqualsTest.php

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,11 @@ public static function notEqualValues(): array
177177
[2, 1],
178178
// floats
179179
[2.3, 4.2],
180-
[2.3, 4.2, 0.5],
181-
[[2.3], [4.2], 0.5],
182-
[[[2.3]], [[4.2]], 0.5],
183-
[new Struct(2.3), new Struct(4.2), 0.5],
184-
[[new Struct(2.3)], [new Struct(4.2)], 0.5],
180+
[2.3, 4.2],
181+
[[2.3], [4.2]],
182+
[[[2.3]], [[4.2]]],
183+
[new Struct(2.3), new Struct(4.2)],
184+
[[new Struct(2.3)], [new Struct(4.2)]],
185185
[1 / 3, 1 - 2 / 3],
186186
[1 / 3, '0.33333333333333337'],
187187
[1 - 2 / 3, '3333333333333333'],
@@ -233,12 +233,10 @@ public static function notEqualValues(): array
233233
[
234234
new DateTimeImmutable('2013-03-29 04:13:35', new DateTimeZone('America/New_York')),
235235
new DateTimeImmutable('2013-03-29 03:13:35', new DateTimeZone('America/New_York')),
236-
3500,
237236
],
238237
[
239238
new DateTimeImmutable('2013-03-29 04:13:35', new DateTimeZone('America/New_York')),
240239
new DateTimeImmutable('2013-03-29 05:13:35', new DateTimeZone('America/New_York')),
241-
3500,
242240
],
243241
[
244242
new DateTimeImmutable('2013-03-29', new DateTimeZone('America/New_York')),
@@ -247,7 +245,6 @@ public static function notEqualValues(): array
247245
[
248246
new DateTimeImmutable('2013-03-29', new DateTimeZone('America/New_York')),
249247
new DateTimeImmutable('2013-03-30', new DateTimeZone('America/New_York')),
250-
43200,
251248
],
252249
[
253250
new DateTimeImmutable('2013-03-29 04:13:35', new DateTimeZone('America/New_York')),
@@ -256,7 +253,6 @@ public static function notEqualValues(): array
256253
[
257254
new DateTimeImmutable('2013-03-29 04:13:35', new DateTimeZone('America/New_York')),
258255
new DateTimeImmutable('2013-03-29 04:13:35', new DateTimeZone('America/Chicago')),
259-
3500,
260256
],
261257
[
262258
new DateTimeImmutable('2013-03-30', new DateTimeZone('America/New_York')),

0 commit comments

Comments
 (0)