diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-09-20 07:53:13 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-10-01 06:55:22 +0200 |
| commit | 9c4c548e372311f6d685647b3cfed35e1579ad54 (patch) | |
| tree | e29e888313ab79d5150ecd517c0fe3d8ada8e977 /test/expression/expression.py | |
| parent | 9c8596646ba6150694deb984f25aaad73d2c7125 (diff) | |
| download | miasm-9c4c548e372311f6d685647b3cfed35e1579ad54.tar.gz miasm-9c4c548e372311f6d685647b3cfed35e1579ad54.zip | |
Expresion: use ExprAssign instead of ExprAff
ExprAff stands for (in french) "Expression affectation" We will now use ExprAssign (for Expression Assignment) (instead of ExprAss)
Diffstat (limited to 'test/expression/expression.py')
| -rw-r--r-- | test/expression/expression.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 |