From 42c99f247bbdf1b4caa2d49a31fa3c4334f5dd29 Mon Sep 17 00:00:00 2001 From: Soeren Schoenbrod Date: Fri, 24 Jul 2026 06:16:15 +0000 Subject: [PATCH] build(deps): bump Tracking compat to 3 Tracking v3 makes the multi-band `track!` band-measurement keys case-sensitive: the named-tuple keys must match the `TrackState`'s band set (derived from each signal's `band_key`, i.e. `:L1`/`:L5`). Update the Flexiband III-7a integration test to pass `L1`/`L5` instead of `l1`/`l5`. Co-Authored-By: Claude Opus 4.8 (1M context) --- Project.toml | 2 +- test/flexiband_iii7a.jl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index cff69f3..48e7423 100755 --- a/Project.toml +++ b/Project.toml @@ -23,7 +23,7 @@ Downloads = "1" GNSSSignals = "3.3" Random = "1" Test = "1" -Tracking = "2" +Tracking = "3" Unitful = "1" ZipFile = "0.10" julia = "1.10" diff --git a/test/flexiband_iii7a.jl b/test/flexiband_iii7a.jl index ab8a21f..70276a5 100644 --- a/test/flexiband_iii7a.jl +++ b/test/flexiband_iii7a.jl @@ -267,8 +267,8 @@ else isempty(l1) && break ts = track!( ( - l1 = BandMeasurement(l1, III7A_FS, III7A_IF), - l5 = BandMeasurement(l5, III7A_FS_L5, III7A_IF_L5), + L1 = BandMeasurement(l1, III7A_FS, III7A_IF), + L5 = BandMeasurement(l5, III7A_FS_L5, III7A_IF_L5), ), ts, )