Commit c54a71fe by Sarina Canelake

s/pylint:disable/pylint: disable/ (formatting fix)

parent c0556a7e
...@@ -654,7 +654,7 @@ class IntegrationTest(testutil.TestCase, test.TestCase): ...@@ -654,7 +654,7 @@ class IntegrationTest(testutil.TestCase, test.TestCase):
pipeline.get_login_url(self.PROVIDER_CLASS.NAME, pipeline.AUTH_ENTRY_LOGIN))) pipeline.get_login_url(self.PROVIDER_CLASS.NAME, pipeline.AUTH_ENTRY_LOGIN)))
# Next, the provider makes a request against /auth/complete/<provider>. # Next, the provider makes a request against /auth/complete/<provider>.
# pylint:disable-msg=protected-access # pylint: disable-msg=protected-access
self.assert_redirect_to_register_looks_correct(actions.do_complete(strategy, social_views._do_login)) self.assert_redirect_to_register_looks_correct(actions.do_complete(strategy, social_views._do_login))
mako_middleware_process_request(strategy.request) mako_middleware_process_request(strategy.request)
...@@ -716,7 +716,7 @@ class IntegrationTest(testutil.TestCase, test.TestCase): ...@@ -716,7 +716,7 @@ class IntegrationTest(testutil.TestCase, test.TestCase):
# assignment via pipeline to make sure a distinct username is created. # assignment via pipeline to make sure a distinct username is created.
strategy.storage.user.create_user(username=self.get_username(), email='user@email.com', password='password') strategy.storage.user.create_user(username=self.get_username(), email='user@email.com', password='password')
strategy.backend.auth_complete = mock.MagicMock(return_value=self.fake_auth_complete(strategy)) strategy.backend.auth_complete = mock.MagicMock(return_value=self.fake_auth_complete(strategy))
# pylint:disable-msg=protected-access # pylint: disable-msg=protected-access
self.assert_redirect_to_register_looks_correct(actions.do_complete(strategy, social_views._do_login)) self.assert_redirect_to_register_looks_correct(actions.do_complete(strategy, social_views._do_login))
distinct_username = pipeline.get(request)['kwargs']['username'] distinct_username = pipeline.get(request)['kwargs']['username']
self.assertNotEqual(original_username, distinct_username) self.assertNotEqual(original_username, distinct_username)
...@@ -725,7 +725,7 @@ class IntegrationTest(testutil.TestCase, test.TestCase): ...@@ -725,7 +725,7 @@ class IntegrationTest(testutil.TestCase, test.TestCase):
request, strategy = self.get_request_and_strategy( request, strategy = self.get_request_and_strategy(
auth_entry=pipeline.AUTH_ENTRY_REGISTER, redirect_uri='social:complete') auth_entry=pipeline.AUTH_ENTRY_REGISTER, redirect_uri='social:complete')
strategy.backend.auth_complete = mock.MagicMock(return_value=self.fake_auth_complete(strategy)) strategy.backend.auth_complete = mock.MagicMock(return_value=self.fake_auth_complete(strategy))
# pylint:disable-msg=protected-access # pylint: disable-msg=protected-access
self.assert_redirect_to_register_looks_correct(actions.do_complete(strategy, social_views._do_login)) self.assert_redirect_to_register_looks_correct(actions.do_complete(strategy, social_views._do_login))
mako_middleware_process_request(strategy.request) mako_middleware_process_request(strategy.request)
......
...@@ -11,7 +11,7 @@ from xmodule_django.models import CourseKeyField ...@@ -11,7 +11,7 @@ from xmodule_django.models import CourseKeyField
# but currently the rest of the system assumes that "student" defines # but currently the rest of the system assumes that "student" defines
# certain models. For now we will leave the models in "student" and # certain models. For now we will leave the models in "student" and
# create an alias in "user_api". # create an alias in "user_api".
from student.models import UserProfile, Registration, PendingEmailChange # pylint:disable=unused-import from student.models import UserProfile, Registration, PendingEmailChange # pylint: disable=unused-import
class UserPreference(models.Model): class UserPreference(models.Model):
......
...@@ -70,7 +70,7 @@ class DiscussionTabSingleThreadTest(UniqueCourseTest): ...@@ -70,7 +70,7 @@ class DiscussionTabSingleThreadTest(UniqueCourseTest):
AutoAuthPage(self.browser, course_id=self.course_id).visit() AutoAuthPage(self.browser, course_id=self.course_id).visit()
def setup_thread_page(self, thread_id): def setup_thread_page(self, thread_id):
self.thread_page = DiscussionTabSingleThreadPage(self.browser, self.course_id, thread_id) # pylint:disable=W0201 self.thread_page = DiscussionTabSingleThreadPage(self.browser, self.course_id, thread_id) # pylint: disable=W0201
self.thread_page.visit() self.thread_page.visit()
# pylint: disable=unused-argument # pylint: disable=unused-argument
...@@ -129,7 +129,7 @@ class InlineDiscussionTest(UniqueCourseTest): ...@@ -129,7 +129,7 @@ class InlineDiscussionTest(UniqueCourseTest):
discussion_page = InlineDiscussionPage(self.browser, self.discussion_id) discussion_page = InlineDiscussionPage(self.browser, self.discussion_id)
discussion_page.expand_discussion() discussion_page.expand_discussion()
self.assertEqual(discussion_page.get_num_displayed_threads(), 1) self.assertEqual(discussion_page.get_num_displayed_threads(), 1)
self.thread_page = InlineDiscussionThreadPage(self.browser, thread_id) # pylint:disable=W0201 self.thread_page = InlineDiscussionThreadPage(self.browser, thread_id) # pylint: disable=W0201
self.thread_page.expand() self.thread_page.expand()
def refresh_thread_page(self, thread_id): def refresh_thread_page(self, thread_id):
......
...@@ -127,7 +127,7 @@ class DiscussionTabSingleThreadTest(UniqueCourseTest, DiscussionResponsePaginati ...@@ -127,7 +127,7 @@ class DiscussionTabSingleThreadTest(UniqueCourseTest, DiscussionResponsePaginati
AutoAuthPage(self.browser, course_id=self.course_id).visit() AutoAuthPage(self.browser, course_id=self.course_id).visit()
def setup_thread_page(self, thread_id): def setup_thread_page(self, thread_id):
self.thread_page = DiscussionTabSingleThreadPage(self.browser, self.course_id, thread_id) # pylint:disable=W0201 self.thread_page = DiscussionTabSingleThreadPage(self.browser, self.course_id, thread_id) # pylint: disable=W0201
self.thread_page.visit() self.thread_page.visit()
def test_marked_answer_comments(self): def test_marked_answer_comments(self):
...@@ -318,7 +318,7 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix ...@@ -318,7 +318,7 @@ class InlineDiscussionTest(UniqueCourseTest, DiscussionResponsePaginationTestMix
def setup_thread_page(self, thread_id): def setup_thread_page(self, thread_id):
self.discussion_page.expand_discussion() self.discussion_page.expand_discussion()
self.assertEqual(self.discussion_page.get_num_displayed_threads(), 1) self.assertEqual(self.discussion_page.get_num_displayed_threads(), 1)
self.thread_page = InlineDiscussionThreadPage(self.browser, thread_id) # pylint:disable=W0201 self.thread_page = InlineDiscussionThreadPage(self.browser, thread_id) # pylint: disable=W0201
self.thread_page.expand() self.thread_page.expand()
def test_initial_render(self): def test_initial_render(self):
......
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