Skip to content

Commit

Permalink
Use correct package name and location for test
Browse files Browse the repository at this point in the history
  • Loading branch information
samueltardieu committed Sep 23, 2023
1 parent c9908c3 commit 269205c
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 892 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
members = ["aoc", "aoc-derive", "aoc-build", "aoc/tests/dummy-year"]
members = ["aoc", "aoc-derive", "aoc-build", "dummy-year"]
resolver = "2"
2 changes: 1 addition & 1 deletion aoc/tests/dummy-year.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fn run_with(args: &[&str]) -> String {
let output = Command::new("cargo")
.args(["run", "--"])
.args(args)
.current_dir("tests/dummy-year")
.current_dir("../dummy-year")
.output()
.unwrap();
String::from_utf8(output.stdout).unwrap()
Expand Down
Loading

0 comments on commit 269205c

Please sign in to comment.