diff options
author | 2019-08-20 15:11:24 +0200 | |
---|---|---|
committer | 2019-08-20 15:17:37 +0200 | |
commit | 0e146f8d1142672725b6abb38478f503a9261c80 (patch) | |
tree | 846aedddb91908ac831cd15f7877d5ccfbd9a039 /tests/single.rs | |
parent | 2f4f1857788a3c2c5e8b97a5b7cc2c39c26c659f (diff) | |
download | rtic-0e146f8d1142672725b6abb38478f503a9261c80.tar.gz rtic-0e146f8d1142672725b6abb38478f503a9261c80.tar.zst rtic-0e146f8d1142672725b6abb38478f503a9261c80.zip |
adapt to changes in rtfm-syntax
Diffstat (limited to '')
-rw-r--r-- | tests/single.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/single.rs b/tests/single.rs index 93addf6e..01b80312 100644 --- a/tests/single.rs +++ b/tests/single.rs @@ -8,8 +8,10 @@ fn ui() { config.mode = Mode::Ui; config.src_base = PathBuf::from("ui/single"); - config.target_rustcflags = - Some("--edition=2018 -L target/debug/deps -Z unstable-options --extern rtfm --extern lm3s6965".to_owned()); + config.target_rustcflags = Some( + "--edition=2018 -L target/debug/deps -Z unstable-options --extern rtfm --extern lm3s6965" + .to_owned(), + ); config.link_deps(); config.clean_rmeta(); |