Describe your bug or feature request.
3.x tests are failing on D11, due to a silly issue with the ordering of cache tags (See below):
ProductVariationResourceTest::testRelated
Failed asserting that two arrays are equal.
--- Expected
+++ Actual
@@ @@
Array (
- 0 => 'config:system.logging'
- 1 => 'http_response'
- 3 => 'commerce_product_variation:1'
- 4 => 'commerce_product:1'
+ 0 => 'commerce_product:1'
+ 1 => 'commerce_product_variation:1'
+ 3 => 'http_response'
+ 2 => 'config:system.logging'
)
Let's try to find a solution for those failures.
Issue fork commerce-3468078
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
jsacksick commentedInteresting, we now have fresh test failures... lol
Comment #5
jsacksick commentedI'm guessing the new test failures are caused by #3466529: Use easily recognizable date format.
Comment #7
jsacksick commented