diff options
author | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-05-31 20:38:56 +0200 |
---|---|---|
committer | Neels Hofmeyr <nhofmeyr@sysmocom.de> | 2017-05-31 20:39:42 +0200 |
commit | b3b3104b6a8061085d1d396c4cef28e86a9c69a1 (patch) | |
tree | dc27dd59e41daf63e19abba27ea75b39862f4896 /selftest | |
parent | 996651a3a3e451d978a017f964bacccc0c19ed0f (diff) |
fix: Sms.__eq__ bug due to typo
Add test of this to sms_test.py
Change-Id: Ib0b420a81c1b211a9f03a2521d244b3a427d5e5b
Diffstat (limited to 'selftest')
-rwxr-xr-x | selftest/sms_test.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/selftest/sms_test.py b/selftest/sms_test.py index ce81c3e..01cecc2 100755 --- a/selftest/sms_test.py +++ b/selftest/sms_test.py @@ -17,4 +17,6 @@ msg2.msg = str(msg.msg) print(str(msg2)) assert msg == msg2 +assert msg == str(msg.msg) + # vim: expandtab tabstop=4 shiftwidth=4 |