diff --git a/python/test/matplotlib.cpp b/python/test/matplotlib.cpp index 99bc61f5c..3ba0bd6df 100644 --- a/python/test/matplotlib.cpp +++ b/python/test/matplotlib.cpp @@ -85,7 +85,7 @@ QUIZ_CASE(python_matplotlib_pyplot_hist) { assert_command_execution_succeeds(env, "hist([2,3,4,5,6],23)"); assert_command_execution_succeeds(env, "hist([2,3,4,5,6],[0,2,3])"); assert_command_execution_succeeds(env, "hist([2,3,4,5,6],[0,2,3, 4,5,6,7])"); - assert_command_execution_succeeds(env, "hist([2,3,4,5,6],[0,2,3, 4,5,6,7], (0,255,0))"); + assert_command_execution_succeeds(env, "hist([2,3,4,5,6],[0,2,3, 4,5,6,7], color=(0,255,0))"); assert_command_execution_succeeds(env, "show()"); deinit_environment(); }