From ca6284c97c374a330ffe55ebd6f27aa2a38d6ef9 Mon Sep 17 00:00:00 2001 From: SigureMo Date: Fri, 10 May 2024 06:24:57 +0000 Subject: [PATCH] [SOT] Update ut `test_06_call_function` to avoid type promotion error --- test/sot/test_06_call_function.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/sot/test_06_call_function.py b/test/sot/test_06_call_function.py index 4358afe6ca985..696fd1451cf56 100644 --- a/test/sot/test_06_call_function.py +++ b/test/sot/test_06_call_function.py @@ -67,7 +67,8 @@ def fn_with_varargs_and_kwargs(x, *args, **kwargs): + args[0] + args[1] - args[2] - + kwargs['a'] * kwargs['b'] / kwargs['c'] + + kwargs['a'] * kwargs['b'] + + kwargs['c'] )