Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
huong-li-nguyen committed Apr 5, 2024
1 parent 8ef3c63 commit d5572d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vizro-core/examples/_dev/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
gapminder_neg = px.data.gapminder()
gapminder_mixed = px.data.gapminder()
gapminder_neg["lifeExp"] = gapminder_neg["lifeExp"] * (-1)
gapminder_mixed["lifeExp"].iloc[:200] = gapminder_mixed["lifeExp"].iloc[:200] * (-1)
gapminder_mixed.loc[:200, "lifeExp"] = gapminder_mixed.loc[:200, "lifeExp"] * (-1)


@capture("graph")
Expand Down

0 comments on commit d5572d1

Please sign in to comment.