Skip to content

Commit c93ccf0

Browse files
committed
platform: fix memory size test case
1 parent b0ca957 commit c93ccf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/os_config_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func TestGetSystemMemoryUsageKB(t *testing.T) {
3434
return
3535
}
3636
used, total := GetSystemMemoryUsageKB()
37-
if used < 1000 || total < used {
37+
if used < 100 || total < used {
3838
t.Fatal(used, total)
3939
}
4040
}

0 commit comments

Comments
 (0)