google: minor tweaks

Change-Id: Ic0e6363b19bbfd40df6b7b15322abf43c9990688
This commit is contained in:
Patrick Jones
2020-12-15 08:53:28 -08:00
parent 4c1e0860ce
commit 08114d04f5
5 changed files with 10 additions and 7 deletions

View File

@@ -23,14 +23,14 @@ type fsTest struct {
var testFsUntyped = fsTest{
name: "UntypedFileSource",
cs: CredentialSource{
File: "../../testdata/externalaccount/3pi_cred.txt",
File: "./testdata/3pi_cred.txt",
},
want: "street123",
}
var testFsTypeText = fsTest{
name: "TextFileSource",
cs: CredentialSource{
File: "../../testdata/externalaccount/3pi_cred.txt",
File: "./testdata/3pi_cred.txt",
Format: format{Type: fileTypeText},
},
want: "street123",
@@ -38,7 +38,7 @@ var testFsTypeText = fsTest{
var testFsTypeJSON = fsTest{
name: "JSONFileSource",
cs: CredentialSource{
File: "../../testdata/externalaccount/3pi_cred.json",
File: "./testdata/3pi_cred.json",
Format: format{Type: fileTypeJSON, SubjectTokenFieldName: "SubjToken"},
},
want: "321road",