Skip to content

Commit 2e203ea

Browse files
committed
polish test
1 parent 69efed4 commit 2e203ea

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/system/small/session/test_session_logging.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,11 @@ def test_data_type_logging(scalars_df_index):
2828
) as mock_query:
2929
s.to_pandas()
3030

31-
# Verify call args
31+
# Fetch job labels sent to the BQ client and verify their values
3232
assert mock_query.called
3333
call_args = mock_query.call_args
3434
job_config = call_args.kwargs.get("job_config")
35-
36-
# Verify we actually got a job_config
3735
assert job_config is not None
38-
39-
# Use the captured job_config for assertions
4036
job_labels = job_config.labels
4137
assert "bigframes-dtypes" in job_labels
4238
assert job_labels["bigframes-dtypes"] == data_types.encode_type_refs(

0 commit comments

Comments
 (0)