Commit 5df912c
committed
minor symfony#58206 [Cache] Fix missing class import (derrabus)
This PR was merged into the 6.4 branch.
Discussion
----------
[Cache] Fix missing class import
| Q | A
| ------------- | ---
| Branch? | 6.4
| Bug fix? | yes
| New feature? | no
| Deprecations? | no
| Issues | N/A
| License | MIT
This test is supposed to throw PHPUnit's `SkippedTestSuiteError`, but that doesn't work because the class is not imported. Given that this class is marked as internal and that calling `markTestSkipped()` should achieve the same goal, I switched to that method. This is also consistent with other methods in this trait.
Commits
-------
9d71219 Fix missing class import1 file changed
+4
-4
lines changedLines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
94 | 94 | | |
95 | 95 | | |
96 | | - | |
| 96 | + | |
97 | 97 | | |
98 | 98 | | |
99 | | - | |
| 99 | + | |
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
104 | | - | |
| 104 | + | |
105 | 105 | | |
106 | 106 | | |
107 | 107 | | |
| |||
0 commit comments