Skip to content

Commit

Permalink
quickfix: trabajando
Browse files Browse the repository at this point in the history
  • Loading branch information
synmaga committed Dec 2, 2024
1 parent 33d4edb commit 045c1bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Examples/test-suite/python/cpp17_optional_runme.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
assert circle_custom.radius == radius, "Expected radius to be {}, got {}".format(radius, circle_custom.radius)
assert circle_custom.name == name, "Expected name to be '{}', got {}".format(name, circle_custom.name)
assert (
circle_custom.toString() == "Circle({point.toString()}, {}, {})".format(radius, name)
circle_custom.toString() == "Circle({}, {}, {})".format(point.toString(), radius, name)
), "Expected 'Circle({point.toString()}, {}, {})', got {circle_custom.toString()}".format(radius, name)

# test circle optional equality
Expand Down Expand Up @@ -275,8 +275,8 @@
assert circle.name == name, "Expected name to be '{}', got '{}'".format(name, circle.name)

assert (
circle.toString() == "Circle({point.toString()}, {}, {})".format(radius, name)
), "Expected 'Circle({point.toString()}, {}, {})', got {circle.toString()}".format(radius, name)
circle.toString() == "Circle({}}, {}, {})".format(point.toString(), radius, name)
), "Expected 'Circle({}, {}, {})', got {}".format(point.toString(), radius, name, circle.toString())

# test circle optional handling
circle = Circle()
Expand Down

0 comments on commit 045c1bb

Please sign in to comment.