Skip to content

Commit 46603dd

Browse files
committed
Fix magic number used in test
1 parent 9ecc246 commit 46603dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_column_state.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
alt_colState = [
8585
{
8686
"colId": "price",
87-
"width": 198,
87+
"width": 200,
8888
"hide": False,
8989
"pinned": None,
9090
"sort": "asc",
@@ -239,7 +239,7 @@ def loadState(n):
239239

240240
dash_duo.find_element("#get-column-state-button").click()
241241
testState = colState.copy()
242-
testState[1]["width"] = 198
242+
testState[1]["width"] = 200
243243
until(
244244
lambda: json.dumps(testState)
245245
in dash_duo.find_element("#reset-column-state-grid-pre").text,

0 commit comments

Comments
 (0)