Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.8
-
None
Description
This bug was reported at dev list here.
Need to recover IgniteCacheTestSuite3 that was lost because of changes made per IGNITE-10796.
Specifically, in file IgniteBinaryObjectsCacheTestSuite3.java line 64 currently reads:
List<Class<?>> suite = new ArrayList<>();
Above is wrong, correct code at this line should be:
List<Class<?>> suite = new ArrayList<>(IgniteCacheTestSuite3.suite(ignoredTests));
Attachments
Issue Links
- is broken by
-
IGNITE-10796 Migrate from JUnit 3 to 4 suites involving IgniteTestSuite
- Resolved
- relates to
-
IGNITE-10208 Verify list of tests after migration to Junit 4 against some prior reference (follow-up to IGNITE-10177)
- Open
- links to