Open catherio opened 2 hours ago
To help diagnose this issue, please provide a Minimal Reproducible Example (MRE) that shows the problem. Here's what a complete bug report would look like:
# test_example.py
def test_function_order():
calls = []
def function1():
calls.append('function1')
def function2():
calls.append('function2')
# Run your test code here that calls the functions
function1()
function2()
# Show what order you're getting
print("Actual order:", calls)
# Show what order you expected
expected = ['function1', 'function2']
assert calls == expected
Please provide:
This will help us understand what you mean by "upside down" and investigate the issue.
Pleaze fix1