Skip to content

Commit 03e9c40

Browse files
author
cktii
committed
chore: make pre-commit happy
1 parent 153f2c3 commit 03e9c40

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

fuzzing/corpus/bt_corpus/corpus1.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
<AlwaysSuccess name="success"/>
55
</Sequence>
66
</BehaviorTree>
7-
</root>
7+
</root>
8+

fuzzing/corpus/bt_corpus/corpus2.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@
1111
</RetryUntilSuccessful>
1212
</Fallback>
1313
</BehaviorTree>
14-
</root>
14+
</root>
15+

fuzzing/corpus/bt_corpus/corpus3.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@
55
<SubTree ID="SubTree" _autoremap="true"/>
66
</Sequence>
77
</BehaviorTree>
8-
</root>
8+
</root>
9+

fuzzing/corpus/bt_corpus/corpus4.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@
66
<ForceFailure/>
77
</ReactiveSequence>
88
</BehaviorTree>
9-
</root>
9+
</root>
10+

fuzzing/corpus/script_corpus/sample1

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
a:=1; b:=2; a+b
1+
a : = 1;
2+
b : = 2;
3+
a + b

fuzzing/corpus/script_corpus/sample2

+3-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
x:=true; y:=false; x and y
1+
x : = true;
2+
y : = false;
3+
x and y

fuzzing/corpus/script_corpus/sample3

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
str:='hello'; len(str)
1+
str : = 'hello';
2+
len(str)

0 commit comments

Comments
 (0)