| Submitter | Dirk Wallenstein |
|---|---|
| Date | May 3, 2012, 12:45 p.m. |
| Message ID | <20120503124539.GA1133@bottich> |
| Download | mbox | patch |
| Permalink | /patch/156688/ |
| State | Accepted |
| Commit | 700768a32f8ce8f6e263570043aa12606876bf1b |
| Headers | show |
Comments
Patch
diff --git a/apps/patchwork/tests/utils.py b/apps/patchwork/tests/utils.py index 1cb5dfb..f340f09 100644 --- a/apps/patchwork/tests/utils.py +++ b/apps/patchwork/tests/utils.py @@ -32,8 +32,8 @@ except ImportError: from email.MIMEMultipart import MIMEMultipart # helper functions for tests -_test_mail_dir = 'patchwork/tests/mail' -_test_patch_dir = 'patchwork/tests/patches' +_test_mail_dir = os.path.join(os.path.dirname(__file__), 'mail') +_test_patch_dir = os.path.join(os.path.dirname(__file__), 'patches') class defaults(object): project = Project(linkname = 'test-project', name = 'Test Project')
Make test execution independent of the current directory. Signed-off-by: Dirk Wallenstein <halsmit@t-online.de> --- apps/patchwork/tests/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)