Index: sky/tests/raw/box_layout.dart |
diff --git a/sky/tests/raw/box_layout.dart b/sky/tests/raw/box_layout.dart |
index 7e686632b2494ca89df99ff88d36f01f531c180c..c2acaec8e7cf930729e49010c48f2736f5b1656c 100644 |
--- a/sky/tests/raw/box_layout.dart |
+++ b/sky/tests/raw/box_layout.dart |
@@ -15,10 +15,10 @@ void main() { |
test("padding", () { |
var size = new RenderSizedBox(desiredSize: new sky.Size(double.INFINITY, 100.0)); |
- var inner = new RenderDecoratedBox(decoration: new BoxDecoration(backgroundColor: 0xFF00FF00), child: size); |
+ var inner = new RenderDecoratedBox(decoration: new BoxDecoration(backgroundColor: sky.Color.green), child: size); |
var padding = new RenderPadding(padding: new EdgeDims.all(50.0), child: inner); |
var block = new RenderBlock(children: [padding]); |
- var outer = new RenderDecoratedBox(decoration: new BoxDecoration(backgroundColor: 0xFF0000FF), child: block); |
+ var outer = new RenderDecoratedBox(decoration: new BoxDecoration(backgroundColor: sky.Color.blue), child: block); |
app = new TestApp(outer); |
}); |
} |