@@ -139,7 +139,9 @@ func TestRun(t *testing.T) {
139
139
t .Logf ("bytes written total: %.0f\n " , writeMetrics .Total ())
140
140
141
141
// We want to ensure the metrics are somewhat accurate.
142
- assert .InDelta (t , bytesPerTick , writeMetrics .Total (), 0.1 )
142
+ // TODO: https://github.com/coder/coder/issues/11175
143
+ // assert.InDelta(t, bytesPerTick, writeMetrics.Total(), 0.1)
144
+
143
145
// Read is highly variable, depending on how far we read before stopping.
144
146
// Just ensure it's not zero.
145
147
assert .NotZero (t , readMetrics .Total ())
@@ -259,7 +261,9 @@ func TestRun(t *testing.T) {
259
261
t .Logf ("bytes written total: %.0f\n " , writeMetrics .Total ())
260
262
261
263
// We want to ensure the metrics are somewhat accurate.
262
- assert .InDelta (t , bytesPerTick , writeMetrics .Total (), 0.1 )
264
+ // TODO: https://github.com/coder/coder/issues/11175
265
+ // assert.InDelta(t, bytesPerTick, writeMetrics.Total(), 0.1)
266
+
263
267
// Read is highly variable, depending on how far we read before stopping.
264
268
// Just ensure it's not zero.
265
269
assert .NotZero (t , readMetrics .Total ())
0 commit comments