From 9c4c548e372311f6d685647b3cfed35e1579ad54 Mon Sep 17 00:00:00 2001 From: Fabrice Desclaux Date: Thu, 20 Sep 2018 07:53:13 +0200 Subject: Expresion: use ExprAssign instead of ExprAff ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss) --- test/expression/expression.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/expression/expression.py') diff --git a/test/expression/expression.py b/test/expression/expression.py index b998d4a5..1b39ab9f 100644 --- a/test/expression/expression.py +++ b/test/expression/expression.py @@ -61,12 +61,12 @@ for expr in [ A + cst1, ExprCompose(A, cst1), A.msb(), - ExprAff(A, cst1), + ExprAssign(A, cst1), ]: print repr(expr) assert expr == eval(repr(expr)) -aff = ExprAff(A[0:32], cst1) +aff = ExprAssign(A[0:32], cst1) assert aff.dst == A and aff.src == cst1 -- cgit 1.4.1