remove raw print statements

This commit is contained in:
James Bardin 2017-11-06 17:10:33 -05:00
parent 6302916e65
commit 3297f60d03
1 changed files with 0 additions and 3 deletions

View File

@ -851,7 +851,6 @@ func TestLoadFile_ignoreChanges(t *testing.T) {
}
actual := resourcesStr(c.Resources)
print(actual)
if actual != strings.TrimSpace(ignoreChangesResourcesStr) {
t.Fatalf("bad:\n%s", actual)
}
@ -943,7 +942,6 @@ func TestLoad_hclAttributes(t *testing.T) {
}
actual := resourcesStr(c.Resources)
print(actual)
if actual != strings.TrimSpace(jsonAttributeStr) {
t.Fatalf("bad:\n%s", actual)
}
@ -988,7 +986,6 @@ func TestLoad_jsonAttributes(t *testing.T) {
}
actual := resourcesStr(c.Resources)
print(actual)
if actual != strings.TrimSpace(jsonAttributeStr) {
t.Fatalf("bad:\n%s", actual)
}