Skip to content

Commit 762fdb3

Browse files
committed
Fixed broken firmware_protocol test
1 parent 04a0077 commit 762fdb3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

networking/firmware_protocol/src/serverbound.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,9 @@ mod tests {
258258
sensor_id: 40,
259259
data_type: SensorDataType::Normal,
260260
quat: SlimeQuaternion {
261-
i: f32::from_be_bytes([00, 01, 02, 03]),
262-
j: f32::from_be_bytes([10, 11, 12, 13]),
263-
k: f32::from_be_bytes([20, 21, 22, 23]),
261+
x: f32::from_be_bytes([00, 01, 02, 03]),
262+
y: f32::from_be_bytes([10, 11, 12, 13]),
263+
z: f32::from_be_bytes([20, 21, 22, 23]),
264264
w: f32::from_be_bytes([30, 31, 32, 33]),
265265
},
266266
calibration_info: 127,

0 commit comments

Comments
 (0)