Skip to content

Commit ced84a2

Browse files
committed
fix imports
1 parent 7c59aab commit ced84a2

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

tests/playwright/shiny/tests_for_ai_generated_apps/input_file/app-core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pandas as pd
22

3-
from shiny import App, render, ui, reactive
3+
from shiny import App, reactive, render, ui
44
from shiny.types import FileInfo
55

66
# Define the UI

tests/playwright/shiny/tests_for_ai_generated_apps/input_file/app-express.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import pandas as pd
2+
23
from shiny import reactive
34
from shiny.express import input, render, ui
45
from shiny.types import FileInfo

tests/playwright/shiny/tests_for_ai_generated_apps/input_slider/app-express.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from datetime import date, datetime
22

3-
from shiny import reactive
43
from shiny.express import input, render, ui
54

65
ui.page_opts(title="Slider Parameters Demo", full_width=True)

tests/playwright/shiny/tests_for_ai_generated_apps/input_slider/test_input_slider_core_express.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_slider_parameters(page: Page, app: ShinyAppProc) -> None:
4444
value4.expect_value("Value: 2023-06-15")
4545
slider4.expect_label("Select a date")
4646
slider4.expect_min("1672531200000.0") # 2023-01-01
47-
slider4.expect_max("1704009600000.0") # 2023-12-31
47+
slider4.expect_max("1703980800000.0") # 2023-12-31
4848
slider4.expect_value("2023-06-15")
4949

5050
# Test animated slider

0 commit comments

Comments
 (0)