Skip to content

Commit b1617a4

Browse files
committed
Fix test
1 parent ae88473 commit b1617a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tests/charts/test_scale.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ async def test_datetime_scale(async_sandbox: AsyncSandbox):
99
import datetime
1010
1111
# Generate x values
12-
dates = [datetime.date(2023, 9, 1) + datetime.timedelta(seconds=i) for i in range(10)]
12+
dates = [datetime.date(2023, 9, 1) + datetime.timedelta(seconds=i) for i in range(100)]
1313
y_sin = np.sin(np.linspace(0, 2*np.pi, 100))
1414
1515
# Create the plot

0 commit comments

Comments
 (0)