-
Notifications
You must be signed in to change notification settings - Fork 14.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: fix params with marshmallow schema for Datasets #23829
Conversation
Codecov Report
@@ Coverage Diff @@
## master #23829 +/- ##
===========================================
- Coverage 67.99% 56.76% -11.24%
===========================================
Files 1937 1937
Lines 74934 74936 +2
Branches 8138 8138
===========================================
- Hits 50954 42540 -8414
- Misses 21895 30311 +8416
Partials 2085 2085
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 305 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
@@ -556,4 +556,4 @@ def test_import_parquet(mock_event_logger): | |||
|
|||
with test_db.get_sqla_engine_with_context() as engine: | |||
data = engine.execute(f"SELECT * from {PARQUET_UPLOAD_TABLE}").fetchall() | |||
assert data == [("max", 3), ("bob", 4), ("john", 1), ("paul", 2)] | |||
assert data == [("john", 1), ("paul", 2), ("max", 3), ("bob", 4)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assert data == [("john", 1), ("paul", 2), ("max", 3), ("bob", 4)] | |
assert sorted(data) == [('bob', 4), ('john', 1), ('max', 3), ('paul', 2)] |
@@ -556,4 +556,4 @@ def test_import_parquet(mock_event_logger): | |||
|
|||
with test_db.get_sqla_engine_with_context() as engine: | |||
data = engine.execute(f"SELECT * from {PARQUET_UPLOAD_TABLE}").fetchall() | |||
assert data == [("max", 3), ("bob", 4), ("john", 1), ("paul", 2)] | |||
assert data == [("john", 1), ("paul", 2), ("max", 3), ("bob", 4)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SUMMARY
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION