diff options
author | 2025-01-07 11:15:01 -0800 | |
---|---|---|
committer | 2025-01-07 11:15:01 -0800 | |
commit | 000d8f81a6926dd8c45803fef4eaedce065f0cb5 (patch) | |
tree | 0574bcf4eaab98e558085262ed16e0dca0494f80 /ui | |
parent | 5f09297fdf7538ddc9aad5e9b0eecfe184592538 (diff) |
Remove printfs in tests
So that we don't get as much garbage output when running tests.
Test: m nothing --no-skip-soong-tests
Change-Id: I4be3097eb02e5167ac0902c1de983e17decb0e23
Diffstat (limited to 'ui')
-rw-r--r-- | ui/metrics/proc/status_linux_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ui/metrics/proc/status_linux_test.go b/ui/metrics/proc/status_linux_test.go index 67098502b..0edc40031 100644 --- a/ui/metrics/proc/status_linux_test.go +++ b/ui/metrics/proc/status_linux_test.go @@ -1,7 +1,6 @@ package proc import ( - "fmt" "path/filepath" "reflect" "strconv" @@ -29,7 +28,6 @@ func TestNewProcStatus(t *testing.T) { t.Fatalf("got %v, want nil for error", err) } - fmt.Printf("%d %d\b", status.VmPeak, expectedStatus.VmPeak) if !reflect.DeepEqual(status, expectedStatus) { t.Errorf("got %v, expecting %v for ProcStatus", status, expectedStatus) } |