From 17f2e3e322a84da1354f524be810f01cbd23cfa2 Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Tue, 20 Sep 2022 16:53:23 +0100 Subject: [PATCH] Intentionally trigger test failure to test artifact upload --- docs/examples/guide/layout/center_layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/guide/layout/center_layout.py b/docs/examples/guide/layout/center_layout.py index 0cf31c615..204242117 100644 --- a/docs/examples/guide/layout/center_layout.py +++ b/docs/examples/guide/layout/center_layout.py @@ -6,7 +6,7 @@ class CenterLayoutExample(App): CSS_PATH = "center_layout.css" def compose(self) -> ComposeResult: - yield Static("One", id="bottom") + yield Static("One!", id="bottom") yield Static("Two", id="middle") yield Static("Three", id="top")