Fix a typo in test code

I goofed on spelling (swapped two letters). Whoops.
pull/4451/head
Jimmy Brisson 2017-06-05 15:45:51 -05:00
parent a41e08c7bf
commit ad5608c9e6
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ def test_toolchain_profile_c(profile, source_file):
toolchain = tc_class(TARGET_MAP["K64F"], build_profile=profile)
toolchain.inc_md5 = ""
toolchain.build_dir = ""
toolchain.config = MagicMock(app_config_locaiton=None)
toolchain.config = MagicMock(app_config_location=None)
compile_command = toolchain.compile_command(to_compile,
to_compile + ".o", [])
for parameter in profile['c'] + profile['common']:
@ -68,7 +68,7 @@ def test_toolchain_profile_cpp(profile, source_file):
toolchain = tc_class(TARGET_MAP["K64F"], build_profile=profile)
toolchain.inc_md5 = ""
toolchain.build_dir = ""
toolchain.config = MagicMock(app_config_locaiton=None)
toolchain.config = MagicMock(app_config_location=None)
compile_command = toolchain.compile_command(to_compile,
to_compile + ".o", [])
for parameter in profile['cxx'] + profile['common']: