remove logf to clean up tests output

This commit is contained in:
redanthrax 2022-06-28 15:27:11 -07:00
parent 5855283d24
commit 75e6d3240f
10 changed files with 4 additions and 26 deletions

View file

@ -26,7 +26,6 @@ func TestGetDisks(t *testing.T) {
for _, tt := range testTable {
t.Run(tt.name, func(t *testing.T) {
result, err := disk.GetDisks()
t.Logf("Result: (%v)", result)
if fmt.Sprintf("%T", result) != "[]disk.Disk" {
t.Errorf("expected type %T, got type %T", tt.expected, result)
}