mirror of
https://github.com/veeso/termscp.git
synced 2025-12-07 09:36:00 -08:00
[BUG] - termscp not respecting port in ssh config (#216)
This commit is contained in:
committed by
GitHub
parent
d3c2c084db
commit
20c3e22572
@@ -315,8 +315,11 @@ mod tests {
|
||||
|
||||
#[test]
|
||||
fn test_fs_explorer_stack() {
|
||||
let mut explorer: FileExplorer = FileExplorer::default();
|
||||
explorer.stack_size = 2;
|
||||
let mut explorer = FileExplorer {
|
||||
stack_size: 2,
|
||||
dirstack: VecDeque::with_capacity(2),
|
||||
..Default::default()
|
||||
};
|
||||
explorer.dirstack = VecDeque::with_capacity(2);
|
||||
// Push dir
|
||||
explorer.pushd(Path::new("/tmp"));
|
||||
|
||||
Reference in New Issue
Block a user