Przeglądaj źródła

prime-factors: update tests to 1.0.0

Samuel Warner 8 lat temu
rodzic
commit
079c27e03b

+ 1
- 0
exercises/prime-factors/.meta/version Wyświetl plik

1
+1.0.0

+ 2
- 6
exercises/prime-factors/src/test/java/PrimeFactorsCalculatorTest.java Wyświetl plik

21
         return Arrays.asList(new Object[][]{
21
         return Arrays.asList(new Object[][]{
22
                 {1L, Collections.emptyList()},
22
                 {1L, Collections.emptyList()},
23
                 {2L, Collections.singletonList(2L)},
23
                 {2L, Collections.singletonList(2L)},
24
-                {3L, Collections.singletonList(3L)},
25
-                {4L, Arrays.asList(2L, 2L)},
26
-                {6L, Arrays.asList(2L, 3L)},
27
-                {8L, Arrays.asList(2L, 2L, 2L)},
28
                 {9L, Arrays.asList(3L, 3L)},
24
                 {9L, Arrays.asList(3L, 3L)},
29
-                {27L, Arrays.asList(3L, 3L, 3L)},
30
-                {625L, Arrays.asList(5L, 5L, 5L, 5L)},
25
+                {8L, Arrays.asList(2L, 2L, 2L)},
26
+                {12L, Arrays.asList(2L, 2L, 3L)},
31
                 {901255L, Arrays.asList(5L, 17L, 23L, 461L)},
27
                 {901255L, Arrays.asList(5L, 17L, 23L, 461L)},
32
                 {93819012551L, Arrays.asList(11L, 9539L, 894119L)}
28
                 {93819012551L, Arrays.asList(11L, 9539L, 894119L)}
33
         });
29
         });