Cleanup bool checks (#14102)

* clean up == true cases

* cleanup == false where it didn't seem to hurt readability
This commit is contained in:
swayne275
2022-02-18 07:35:53 -07:00
committed by GitHub
parent e9adaffead
commit ead5972952
12 changed files with 18 additions and 19 deletions

View File

@@ -193,7 +193,7 @@ func testAccStepConfig(t *testing.T, d map[string]interface{}, expectError bool)
func testAccStepRole(t *testing.T, wildCard bool) logicaltest.TestStep {
pathData := make(map[string]interface{})
if wildCard == true {
if wildCard {
pathData = map[string]interface{}{
"sql": testRoleWildCard,
}