1
0
mirror of https://github.com/DanilaFe/abacus synced 2024-10-01 10:50:50 -07:00

Decrease test intensity to prevent travis CI from killing gradle.

This commit is contained in:
Danila Fedorin 2017-08-05 17:24:16 -07:00
parent 65cda37bf7
commit ecb3bf657c

View File

@ -98,7 +98,7 @@ public class CalculationTests {
testOutput("2^0", "(2^0)", "1"); testOutput("2^0", "(2^0)", "1");
testOutput("2^1", "(2^1)", "2"); testOutput("2^1", "(2^1)", "2");
testOutput("2^-1", "(2^(1)`)", "0.5"); testOutput("2^-1", "(2^(1)`)", "0.5");
testOutput("2^300", "(2^300)", "2037035976334486086268445688409378161051468393"); testOutput("2^50", "(2^50)", "112589990684262");
} }
} }