[python] Change math module test to be true on all platforms

This commit is contained in:
Émilie Feral
2020-04-01 16:13:11 +02:00
committed by LeaNumworks
parent 8a5af352bf
commit 40986ebb99

View File

@@ -5,7 +5,7 @@ QUIZ_CASE(python_math) {
TestExecutionEnvironment env = init_environement();
assert_command_execution_succeeds(env, "from math import *");
assert_command_execution_succeeds(env, "e", "2.718281828459045\n");
assert_command_execution_succeeds(env, "gamma(9)", "40320.0\n");
assert_command_execution_succeeds(env, "gamma(3)", "2.0\n");
deinit_environment();
}