Skip to content

Commit

Permalink
Remove redundant static
Browse files Browse the repository at this point in the history
  • Loading branch information
saulecabrera committed Jul 1, 2024
1 parent f4b608d commit 3ad67c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/cli/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use javy_runner::{Builder, Runner, RunnerError};
use std::path::PathBuf;
use std::str;

static BIN: &'static str = env!("CARGO_BIN_EXE_javy");
static ROOT: &'static str = env!("CARGO_MANIFEST_DIR");
static BIN: &str = env!("CARGO_BIN_EXE_javy");
static ROOT: &str = env!("CARGO_MANIFEST_DIR");

#[test]
fn test_identity() -> Result<()> {
Expand Down

0 comments on commit 3ad67c1

Please sign in to comment.