diff options
| author | Dave Henderson <dhenderson@gmail.com> | 2018-05-03 22:34:48 -0400 |
|---|---|---|
| committer | Dave Henderson <dhenderson@gmail.com> | 2018-05-03 22:45:15 -0400 |
| commit | 6b288895618df4aace726d0d23f14e162d1395ea (patch) | |
| tree | 973676d068bbd9606f8d88d717752db1e661e3f9 /test | |
| parent | 381efb0114dcf12c503d4d082b6a4cd2313dd260 (diff) | |
Relaxing restriction on empty datasources
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
Diffstat (limited to 'test')
| -rw-r--r-- | test/integration/datasources_vault_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/datasources_vault_test.go b/test/integration/datasources_vault_test.go index 3973b7e2..b0797e04 100644 --- a/test/integration/datasources_vault_test.go +++ b/test/integration/datasources_vault_test.go @@ -141,7 +141,7 @@ func (s *VaultDatasourcesSuite) TestTokenAuth(c *C) { "VAULT_TOKEN=" + tok, } }) - result.Assert(c, icmd.Expected{ExitCode: 1, Err: "No value found for [bar] from datasource 'vault'"}) + result.Assert(c, icmd.Expected{ExitCode: 1, Err: "error calling ds: Couldn't read datasource 'vault': no value found for path /secret/bar"}) tokFile := fs.NewFile(c, "test-vault-token", fs.WithContent(tok)) defer tokFile.Remove() |
