From e2d56d0a0a469d76fb01d5c1a263ea912d876f6f Mon Sep 17 00:00:00 2001 From: Ayub khan Date: Thu, 5 Sep 2019 12:20:26 +0500 Subject: [PATCH] BOM-273 python3 compatibility --- lms/djangoapps/verify_student/tests/test_ssencrypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/verify_student/tests/test_ssencrypt.py b/lms/djangoapps/verify_student/tests/test_ssencrypt.py index 52b4d065b9..71cdce8af0 100644 --- a/lms/djangoapps/verify_student/tests/test_ssencrypt.py +++ b/lms/djangoapps/verify_student/tests/test_ssencrypt.py @@ -79,7 +79,7 @@ def test_rsa(): def test_rsa_unicode_data(): - data = u'12345678901234567890123456789012' + data = b'12345678901234567890123456789012' _assert_rsa(data, PUB_KEY_BYTES, PRIV_KEY_BYTES)