Remove error return value from ConvertToOptions

ConvertToOptions can't return any error.
This commit is contained in:
akarki15
2016-11-15 22:03:32 -05:00
parent b1fdbf714b
commit fedde804e3
4 changed files with 197 additions and 277 deletions

View File

@@ -130,8 +130,6 @@ func Test_ConvertToOptions(t *testing.T) {
DbName: "mydatabase",
Ssl: "disable",
}
opt, err := b.ConvertToOptions()
if assert.NoError(t, err) {
assert.Equal(t, expOpt, opt)
}
opt := b.ConvertToOptions()
assert.Equal(t, expOpt, opt)
}