diff options
author | Damien George <damien.p.george@gmail.com> | 2015-04-11 21:50:53 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-04-11 21:50:53 +0100 |
commit | 7a6dbaa89b9768d5e4a51ea63d55e18e72614dd7 (patch) | |
tree | f13674da4220059fed77025af4f47e298fb5e5a0 /tests | |
parent | b1bbe966c408901ae64ea8c8b468694c47d05b1a (diff) | |
download | micropython-7a6dbaa89b9768d5e4a51ea63d55e18e72614dd7.tar.gz micropython-7a6dbaa89b9768d5e4a51ea63d55e18e72614dd7.zip |
stmhal: Make LED object print LED(x) for consistency with constructor.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pyb/led.py.exp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/pyb/led.py.exp b/tests/pyb/led.py.exp index b528706694..4e8d856cd9 100644 --- a/tests/pyb/led.py.exp +++ b/tests/pyb/led.py.exp @@ -1,4 +1,4 @@ -<LED 1> -<LED 2> -<LED 3> -<LED 4> +LED(1) +LED(2) +LED(3) +LED(4) |