Skip to content

Commit

Permalink
fix static template test
Browse files Browse the repository at this point in the history
  • Loading branch information
cbouy committed Jul 28, 2023
1 parent 1481f0c commit 07f3aad
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ def test_custom_header(driver: FirefoxDriver, grid):

def test_static_template(driver: FirefoxDriver, sdf_path):
df = mols2grid.sdf_to_dataframe(sdf_path)[:15]
grid = mols2grid.MolGrid(df, mol_col="mol", prerender=True)
grid = mols2grid.MolGrid(df, mol_col="mol", prerender=True, size=(160, 120))
doc = get_doc(
grid,
dict(
Expand All @@ -718,7 +718,6 @@ def test_static_template(driver: FirefoxDriver, sdf_path):
tooltip=["_Name"],
sort_by="_Name",
tooltip_trigger="hover",
size=(160, 120),
),
)
driver.get(doc)
Expand Down

0 comments on commit 07f3aad

Please sign in to comment.