diff options
| author | Eyal Posener <[email protected]> | 2017-05-15 23:52:04 +0300 |
|---|---|---|
| committer | Eyal Posener <[email protected]> | 2017-05-18 23:29:55 +0300 |
| commit | 61d9904ba1f47bf5bbd3497ac0c9f5787adb8633 (patch) | |
| tree | 17357f14eadb4654287eb664dfbe02914167f4db /args_test.go | |
| parent | 659bd9e3d5a0113fb862bcbd06a983b0e74e8df7 (diff) | |
Fix './' prefix for file completion
Diffstat (limited to 'args_test.go')
| -rw-r--r-- | args_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/args_test.go b/args_test.go index 78d346f..a211815 100644 --- a/args_test.go +++ b/args_test.go @@ -162,7 +162,7 @@ func TestArgs_Directory(t *testing.T) { }, { line: "a b c /tmp", - directory: "/tmp", + directory: "/tmp/", }, { line: "a b c /tmp ", @@ -178,7 +178,7 @@ func TestArgs_Directory(t *testing.T) { }, { line: "a b c dir", - directory: "./dir/", + directory: "dir/", }, { line: "a b c ./di", |
