Skip to content

Commit 80f28c4

Browse files
committed
cargo fmt
1 parent 6f8cdb9 commit 80f28c4

File tree

13 files changed

+0
-55
lines changed

13 files changed

+0
-55
lines changed

crates/store/re_types/tests/types/arrows3d.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
2-
31
use re_types::{
42
archetypes::Arrows3D,
53
components::{ClassId, Color, Position3D, Radius, Vector3D},
64
datatypes::Vec3D,
75
Archetype as _, AsComponents as _,
86
};
97

10-
11-
128
#[test]
139
fn roundtrip() {
1410
let expected = Arrows3D {
@@ -55,7 +51,6 @@ fn roundtrip() {
5551
// eprintln!("field = {field:#?}");
5652
// eprintln!("array = {array:#?}");
5753
eprintln!("{} = {array:#?}", field.name());
58-
5954
}
6055

6156
let deserialized = Arrows3D::from_arrow(serialized).unwrap();

crates/store/re_types/tests/types/box2d.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
2-
31
use re_types::{archetypes::Boxes2D, components, Archetype as _, AsComponents as _};
42

5-
6-
73
#[test]
84
fn roundtrip() {
95
let expected = Boxes2D {
@@ -52,7 +48,6 @@ fn roundtrip() {
5248
// eprintln!("field = {field:#?}");
5349
// eprintln!("array = {array:#?}");
5450
eprintln!("{} = {array:#?}", field.name());
55-
5651
}
5752

5853
let deserialized = Boxes2D::from_arrow(serialized).unwrap();

crates/store/re_types/tests/types/box3d.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
2-
31
use re_types::{archetypes::Boxes3D, components, datatypes, Archetype as _, AsComponents as _};
42

5-
6-
73
#[test]
84
fn roundtrip() {
95
let expected = Boxes3D {

crates/store/re_types/tests/types/clear.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
2-
31
use re_types::{archetypes::Clear, Archetype as _, AsComponents as _};
42

5-
6-
73
#[test]
84
fn roundtrip() {
95
let all_expected = [

crates/store/re_types/tests/types/depth_image.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
2-
31
use re_types::{
42
archetypes::DepthImage,
53
components::DepthMeter,
64
datatypes::{ChannelDatatype, ImageFormat},
75
Archetype as _, AsComponents as _,
86
};
97

10-
11-
128
#[test]
139
fn depth_image_roundtrip() {
1410
let format_expected = ImageFormat {

crates/store/re_types/tests/types/fuzzy.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#![allow(clippy::redundant_clone)]
22

3-
4-
53
use re_types::{
64
testing::{
75
archetypes::{AffixFuzzer1, AffixFuzzer2, AffixFuzzer3, AffixFuzzer4},
@@ -12,8 +10,6 @@ use re_types::{
1210

1311
use half::f16;
1412

15-
16-
1713
#[test]
1814
fn roundtrip() {
1915
let fuzzy1 = components::AffixFuzzer1(datatypes::AffixFuzzer1 {

crates/store/re_types/tests/types/line_strips2d.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
2-
31
use re_types::{
42
archetypes::LineStrips2D,
53
components::{ClassId, Color, DrawOrder, LineStrip2D, Radius},
64
Archetype as _, AsComponents as _,
75
};
86

9-
10-
117
#[test]
128
fn roundtrip() {
139
let expected = LineStrips2D {

crates/store/re_types/tests/types/line_strips3d.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
2-
31
use re_types::{
42
archetypes::LineStrips3D,
53
components::{ClassId, Color, LineStrip3D, Radius},
64
Archetype as _, AsComponents as _,
75
};
86

9-
10-
117
#[test]
128
fn roundtrip() {
139
let expected = LineStrips3D {
@@ -55,7 +51,6 @@ fn roundtrip() {
5551
// eprintln!("field = {field:#?}");
5652
// eprintln!("array = {array:#?}");
5753
eprintln!("{} = {array:#?}", field.name());
58-
5954
}
6055

6156
let deserialized = LineStrips3D::from_arrow(serialized).unwrap();

crates/store/re_types/tests/types/mesh3d.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
2-
31
use re_types::{
42
archetypes::Mesh3D,
53
components::{ClassId, Position3D, Texcoord2D, TriangleIndices, Vector3D},
64
datatypes::{Rgba32, UVec3D, Vec2D, Vec3D},
75
Archetype as _, AsComponents as _,
86
};
97

10-
11-
128
#[test]
139
fn roundtrip() {
1410
let texture_format = re_types::components::ImageFormat::rgb8([2, 3]);

crates/store/re_types/tests/types/pinhole.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
2-
31
use re_types::{archetypes::Pinhole, components, Archetype as _, AsComponents as _};
42

5-
6-
73
#[test]
84
fn roundtrip() {
95
let expected = Pinhole {

0 commit comments

Comments
 (0)