We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0e9c20 commit b5e70a9Copy full SHA for b5e70a9
test/test_compile.py
@@ -39,10 +39,10 @@ def test_sketch_new(run_command):
39
assert os.path.isfile(os.path.join(current_sketch_path, sketch_name + ".ino"))
40
41
# Create a test sketch in current directory subpath but using an absolute path
42
- sketch_name = "SketchNewIntegrationTestAbsolute"
+ sketch_name = "SketchNewIntegrationTestSubpath"
43
sketch_subpath = os.path.join("subpath", sketch_name)
44
current_sketch_path = os.path.join(current_path, sketch_subpath)
45
- result = run_command("sketch new {}".format(current_sketch_path))
+ result = run_command("sketch new {}".format(sketch_subpath))
46
assert result.ok
47
assert "Sketch created in: {}".format(current_sketch_path) in result.stdout
48
0 commit comments