Merge pull request #912 from Timmmm/patch-1

Fix export_test.py extra_symbols issue.
pull/922/head
Martin Kojtal 2015-02-19 10:02:30 +00:00
commit 697101564d
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ def test_export(toolchain, target, expected_error=None):
temp_dir = join(base_dir, "temp")
mkdir(temp_dir)
zip_path, report = export(USER_PRJ, USR_PRJ_NAME, toolchain, target, base_dir, temp_dir, False, fake_build_url_resolver)
zip_path, report = export(USER_PRJ, USR_PRJ_NAME, toolchain, target, base_dir, temp_dir, False, None, fake_build_url_resolver)
if report['success']:
move(zip_path, join(EXPORT_DIR, "export_%s_%s.zip" % (toolchain, target)))