From 12f5d52b60d6a0478ab3abf4e27cfed43dc08f18 Mon Sep 17 00:00:00 2001 From: Nimisha Asthagiri Date: Tue, 7 Oct 2014 16:32:16 -0400 Subject: [PATCH] merge branch 'release' fix. --- lms/djangoapps/instructor/features/data_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/instructor/features/data_download.py b/lms/djangoapps/instructor/features/data_download.py index 9aefec5d47..93aedec5ec 100644 --- a/lms/djangoapps/instructor/features/data_download.py +++ b/lms/djangoapps/instructor/features/data_download.py @@ -74,7 +74,7 @@ def verify_report_is_generated(report_name_substring): world.wait_for_visible('#report-downloads-table') # Find table and assert a .csv file is present quoted_id = http.urlquote(world.course_key).replace('/', '_') - expected_file_regexp = quoted_id + '_' + report_name_substring + '\d{4}-\d{2}-\d{2}-\d{4}\.csv' + expected_file_regexp = quoted_id + '_' + report_name_substring + '_\d{4}-\d{2}-\d{2}-\d{4}\.csv' assert_regexp_matches( world.css_html('#report-downloads-table'), expected_file_regexp, msg="Expected report filename was not found."