Skip to content

Commit

Permalink
try to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbaliasnikov committed Dec 19, 2024
1 parent c9ae7e2 commit c0e2f1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/lib/contract_verifier/src/resolver/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub(crate) struct EnvCompilerResolver {
impl Default for EnvCompilerResolver {
fn default() -> Self {
Self {
home_dir: Workspace::locate().core(),
home_dir: Workspace::locate().core().join(".."),
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions zkstack_cli/crates/common/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl Server {
where
P: AsRef<OsStr>,
{
let _dir_guard = shell.push_dir(&self.code_path);
let _dir_guard = shell.push_dir(self.code_path.join("core"));

if let Some(components) = self.components() {
additional_args.push(format!("--components={}", components))
Expand All @@ -59,7 +59,7 @@ impl Server {
let mut cmd = Cmd::new(
cmd!(
shell,
"cargo run --release --manifest-path ./core/Cargo.toml --bin zksync_server {uring...} --
"cargo run --release --bin zksync_server {uring...} --
--genesis-path {genesis_path}
--wallets-path {wallets_path}
--config-path {general_path}
Expand Down

0 comments on commit c0e2f1e

Please sign in to comment.