Commit dd2d1912 by chrisndodge

Merge pull request #6472 from edx/cdodge/fix-pylint-error-in-rc

remove unused variable
parents 2ff8f2fa 443a552d
......@@ -910,7 +910,7 @@ class ShoppingCartViewsTests(ModuleStoreTestCase):
# Two courses in user shopping cart
self.login_user()
item1 = PaidCourseRegistration.add_to_order(self.cart, self.course_key)
PaidCourseRegistration.add_to_order(self.cart, self.course_key)
item2 = PaidCourseRegistration.add_to_order(self.cart, self.testing_course.id)
self.assertEquals(self.cart.orderitem_set.count(), 2)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment