Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
parce que ça ne sert à rien
  • Loading branch information
thomas-saigre committed Jul 17, 2024
1 parent cdb0e39 commit de3ae67
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/test_markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@

def plot_1(symbol):

if symbol == "_____": # invalid symbol, for plotly, we still need to pass a valid one
symbol = "circle"

df = px.data.iris()
fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species")

Expand Down Expand Up @@ -84,7 +81,7 @@ def plot_3():

return fig

@pytest.mark.parametrize("symbol", ["circle", 0, "0", "_____"])
@pytest.mark.parametrize("symbol", ["circle", 0, "0"])
def test_1(symbol):
assert_equality(plot_1(symbol), os.path.join(this_dir, test_name, test_name + "_1_reference.tex"))

Expand Down

0 comments on commit de3ae67

Please sign in to comment.