mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-28 04:10:44 -04:00
Fix failing config test
This commit is contained in:
parent
7c31404fe2
commit
b381a9d7e0
1 changed files with 6 additions and 6 deletions
|
|
@ -21,12 +21,6 @@ func TestLoadConfigFile(t *testing.T) {
|
|||
"address": "127.0.0.1:443",
|
||||
},
|
||||
},
|
||||
&Listener{
|
||||
Type: "tcp",
|
||||
Config: map[string]string{
|
||||
"address": "127.0.0.1:444",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Backend: &Backend{
|
||||
|
|
@ -117,6 +111,12 @@ func TestLoadConfigFile_json2(t *testing.T) {
|
|||
"address": "127.0.0.1:443",
|
||||
},
|
||||
},
|
||||
&Listener{
|
||||
Type: "tcp",
|
||||
Config: map[string]string{
|
||||
"address": "127.0.0.1:444",
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Backend: &Backend{
|
||||
|
|
|
|||
Loading…
Reference in a new issue