Skip to content

Commit bb2a6f7

Browse files
committed
Fix test function names
1 parent 71ee5ec commit bb2a6f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration/renderer/test_loading_states.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def find_text(spec):
169169
find_text({1: 1, 2: 1, 3: 1, 4: 1})
170170

171171

172-
def test_update_title_default(dash_duo):
172+
def test_rdls003_update_title_default(dash_duo):
173173
lock = Lock()
174174

175175
app = dash.Dash(__name__)
@@ -196,7 +196,7 @@ def update(n):
196196
assert dash_duo.driver.title == "Updating..."
197197

198198

199-
def test_update_title_None(dash_duo):
199+
def test_rdls004_update_title_None(dash_duo):
200200
lock = Lock()
201201

202202
app = dash.Dash(__name__, update_title=None)
@@ -223,7 +223,7 @@ def update(n):
223223
assert dash_duo.driver.title == "Dash"
224224

225225

226-
def test_update_title_empty(dash_duo):
226+
def test_rdls005_update_title_empty(dash_duo):
227227
lock = Lock()
228228

229229
app = dash.Dash(__name__, update_title="")
@@ -250,7 +250,7 @@ def update(n):
250250
assert dash_duo.driver.title == "Dash"
251251

252252

253-
def test_update_title_custom(dash_duo):
253+
def test_rdls006_update_title_custom(dash_duo):
254254
lock = Lock()
255255

256256
app = dash.Dash(__name__, update_title="Hello World")

0 commit comments

Comments
 (0)