Skip to content

Commit

Permalink
fix: rename column name for take impl node records
Browse files Browse the repository at this point in the history
Signed-off-by: Koudai Yamasaki <[email protected]>
  • Loading branch information
ymski committed Jan 16, 2025
1 parent 573bb02 commit 1b49739
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/infra/lttng/test_records_provider_lttng.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,18 +608,18 @@ def noop(*args, **kwargs):
take_records_data = [
RecordCppImpl({
f'{topic_name_1}/{COLUMN_NAME.SOURCE_TIMESTAMP}': 1,
COLUMN_NAME.RMW_TAKE_TIMESTAMP: 2,
f'{topic_name_1}/{COLUMN_NAME.RMW_TAKE_TIMESTAMP}': 2,
}),
RecordCppImpl({
f'{topic_name_1}/{COLUMN_NAME.SOURCE_TIMESTAMP}': 6,
COLUMN_NAME.RMW_TAKE_TIMESTAMP: 7,
f'{topic_name_1}/{COLUMN_NAME.RMW_TAKE_TIMESTAMP}': 7,
}),
]
take_records = RecordsCppImpl(
take_records_data,
[
ColumnValue(f'{topic_name_1}/{COLUMN_NAME.SOURCE_TIMESTAMP}'),
ColumnValue(COLUMN_NAME.RMW_TAKE_TIMESTAMP),
ColumnValue(f'{topic_name_1}/{COLUMN_NAME.RMW_TAKE_TIMESTAMP}'),
]
)

Expand Down

0 comments on commit 1b49739

Please sign in to comment.