Index: runtime/observatory/tests/ui/inspector.dart |
diff --git a/runtime/observatory/tests/ui/inspector.dart b/runtime/observatory/tests/ui/inspector.dart |
index 1befdf61cecaec344a7467ad0f95b5cc3758cc14..f33a37e200d1efbf20d4e624865088e1cccb6f1e 100644 |
--- a/runtime/observatory/tests/ui/inspector.dart |
+++ b/runtime/observatory/tests/ui/inspector.dart |
@@ -135,12 +135,12 @@ class Node { |
counter = new Counter("CounterName", "Counter description"); |
expando = new Expando("expando-name"); |
expando[array] = 'The weakly associated value'; |
- float32x4 = new Float32x4.zero(); |
+ float32x4 = new Float32x4(0.0, -1.0, 3.14, 2e28); |
float64 = 3.14; |
- float64x2 = new Float64x2.zero(); |
- gauge = new Gauge("GuageName", "Guage description", 0.0, 100.0); |
+ float64x2 = new Float64x2(0.0, 3.14); |
+ gauge = new Gauge("GaugeName", "Gauge description", 0.0, 100.0); |
growableList = new List(); |
- int32x4 = new Int32x4(0,0,0,0); |
+ int32x4 = new Int32x4(0,1,10,11); |
map = { "x-key": "x-value", "y-key": "y-value", "removed-key": "removed-value" }; |
map.remove("removed-key"); |
mint = 1 << 32; |