We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1616a14 commit 8c04dbcCopy full SHA for 8c04dbc
tmc-langs/src/submission_packaging.rs
@@ -127,7 +127,7 @@ pub fn prepare_submission(
127
}
128
let test_path = tests_dir.join("src/test");
129
if test_path.exists() {
130
- file_util::copy(test_path, dest.join("test"))?;
+ file_util::copy(test_path, dest.join("src"))?;
131
132
133
// copy files from config
@@ -180,7 +180,7 @@ pub fn prepare_submission(
180
181
let test_path = clone_path.join("test");
182
183
- file_util::copy(test_path, &dest.join("test"))?;
+ file_util::copy(test_path, &dest)?;
184
185
186
// copy files directly in tests to dest
0 commit comments