Opened 9 years ago

Closed 9 years ago

Last modified 9 years ago

#23744 closed Cleanup/optimization (fixed)

Minor error in docs for testing with selenium

Reported by: djbug Owned by: nobody
Component: Documentation Version: 1.7
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

https://docs.djangoproject.com/en/dev/topics/testing/tools/#liveservertestcase

This command to run the selenium tests

./manage.py test myapp.MySeleniumTests.test_login

should be

./manage.py test myapp.tests.MySeleniumTests.test_login

Change History (4)

comment:1 by Thomas C, 9 years ago

Easy pickings: set
Triage Stage: UnreviewedAccepted
Type: UncategorizedCleanup/optimization

comment:2 by Tim Graham <timograham@…>, 9 years ago

Resolution: fixed
Status: newclosed

In 6d0547c1ad4c370a6efb136fb3ba8422b012643f:

Fixed #23744 -- Fixed typo in selenium testing example.

Thanks djbug for the report.

comment:3 by Tim Graham <timograham@…>, 9 years ago

In 3ac46d072675efcfd63c7fdcb4c816f9f1c18352:

[1.7.x] Fixed #23744 -- Fixed typo in selenium testing example.

Thanks djbug for the report.

Backport of 6d0547c1ad from master

comment:4 by Tim Graham <timograham@…>, 9 years ago

In 672015407b091ab3189aa7f5e2c6b142deb150ea:

[1.6.x] Fixed #23744 -- Fixed typo in selenium testing example.

Thanks djbug for the report.

Backport of 6d0547c1ad from master

Note: See TracTickets for help on using tickets.
Back to Top