Merge PR #119: Upgrade go to 1.13 & Latest SDK Master

This commit is contained in:
Alexander Bezobchuk
2019-09-10 14:56:58 -04:00
committed by GitHub
parent d624ca1980
commit 6fa5988730
15 changed files with 460 additions and 608 deletions

View File

@@ -555,7 +555,7 @@ func (f *Fixtures) QueryGovParamTallying() gov.TallyParams {
func (f *Fixtures) QueryGovProposals(flags ...string) gov.Proposals {
cmd := fmt.Sprintf("%s query gov proposals %v", f.GaiacliBinary, f.Flags())
stdout, stderr := tests.ExecuteT(f.T, addFlags(cmd, flags), "")
if strings.Contains(stderr, "No matching proposals found") {
if strings.Contains(stderr, "no matching proposals found") {
return gov.Proposals{}
}
require.Empty(f.T, stderr)