diff --git a/python/paddle/v2/framework/tests/test_random_op.py b/python/paddle/v2/framework/tests/test_random_op.py index 447e3e39abb76183bb1b8c3c722f296163bdc095..1c9ff350df8e563f84c27e7b38c50e271a6fd993 100644 --- a/python/paddle/v2/framework/tests/test_random_op.py +++ b/python/paddle/v2/framework/tests/test_random_op.py @@ -9,7 +9,7 @@ class TestRandomOp(unittest.TestCase): def test_random(self): scope = core.Scope(None) # Out = scope.create_var("Out") - op = creation.op_creations.random( + op = creation.op_creations.gaussian_random( shape=[1000, 1000], mean=5.0, std=1.0, seed=1701, Out="Out") for out in op.outputs(): if scope.get_var(out) is None: