diff options
author | Christoph Kluenter <ckluente@thoughtworks.com> | 2016-08-25 17:49:27 +0200 |
---|---|---|
committer | Christoph Kluenter <ckluente@thoughtworks.com> | 2016-08-25 17:49:27 +0200 |
commit | 84f3bfaa5c0b8b3c2163ae53d3c73282281b0107 (patch) | |
tree | 16087a9458a7978b74841b22d61e9b94f064843c /service/test | |
parent | b190c30bbbc131c36e1bf71ecfd6188f89f11bd9 (diff) |
if we use a bigger attachment, we should check for a bigger size
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/functional/features/steps/attachments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/functional/features/steps/attachments.py b/service/test/functional/features/steps/attachments.py index 8b01a28a..3cb56bdc 100644 --- a/service/test/functional/features/steps/attachments.py +++ b/service/test/functional/features/steps/attachments.py @@ -96,7 +96,7 @@ def upload_attachment(context): fname = "upload_test_file.txt" fill_by_css_selector(context, '#fileupload', base_dir + fname) attachment_list_item = wait_until_element_is_visible_by_locator(context, (By.CSS_SELECTOR, '#attachment-list-item li a')) - assert attachment_list_item.text == "%s (36.00 b)" % fname + assert attachment_list_item.text == "%s (3.00 Mb)" % fname @when(u'remove the file') |