Skip to content

Commit 0b4914a

Browse files
juliohmgithub-actions[bot]
authored andcommitted
🤖 Format .jl files
1 parent dec2b95 commit 0b4914a

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

test/transforms/map.jl

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,24 @@
113113
@test Tables.getcolumn(n, colname) == f.(t.a, t.b, t.c, t.d)
114114

115115
# type and target
116-
struct Foo a; b; c; d end
116+
struct Foo
117+
a::Any
118+
b::Any
119+
c::Any
120+
d::Any
121+
end
117122
T = Map(Foo => "target")
118123
n, c = apply(T, t)
119124
@test Tables.schema(n).names == (:target,)
120125
@test n.target == Foo.(t.a, t.b, t.c, t.d)
121126

122127
# type alone
123-
struct Bar a; b; c; d end
128+
struct Bar
129+
a::Any
130+
b::Any
131+
c::Any
132+
d::Any
133+
end
124134
T = Map(Bar)
125135
n, c = apply(T, t)
126136
@test Tables.schema(n).names == (:Bar_a_b_c_d,)

0 commit comments

Comments
 (0)