Fix typo and naming format for extensions

This commit is contained in:
Sergei Silnov
2019-10-24 13:20:25 +02:00
parent 1c798393e2
commit 5e6aae3e04
10 changed files with 9 additions and 8 deletions

View File

@@ -32,8 +32,8 @@ except ImportError:
current_dir = os.path.dirname(os.path.realpath(__file__))
idf_py_path = os.path.join(current_dir, '..', 'idf.py')
extension_path = os.path.join(current_dir, 'test_idf_extensions', 'idf_test_extension')
link_path = os.path.join(current_dir, '..', 'idf_py_actions', 'idf_test_extension')
extension_path = os.path.join(current_dir, 'test_idf_extensions', 'test_ext')
link_path = os.path.join(current_dir, '..', 'idf_py_actions', 'test_ext')
class TestExtensions(unittest.TestCase):