Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kirawi committed Apr 11, 2024
1 parent fe8bb2d commit 2212dfd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions helix-term/tests/test/commands/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -540,9 +540,10 @@ async fn test_symlink_write() -> anyhow::Result<()> {

let mut file = tempfile::NamedTempFile::new_in(&dir)?;
let symlink_path = dir.path().join("linked");
let mut symlink = symlink(file.path(), &symlink_path)?;
symlink(file.path(), &symlink_path)?;

let mut app = helpers::AppBuilder::new()
.with_file(symlink_path, None)
.with_file(&symlink_path, None)
.build()?;

test_key_sequence(
Expand Down

0 comments on commit 2212dfd

Please sign in to comment.