Fix export_test.py extra_symbols issue.

Apparently the export() function takes an extra_symbols parameter that wasn't being passed, causing runtime errors. This fixes it.
pull/912/head
Tim 2015-02-13 13:51:40 +00:00
parent fba1390241
commit 6d5ae65e7e
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)))