Skip to content

Commit 61857a8

Browse files
committed
missing semicolon in the test leads to not reading the line correctly
1 parent f9eb281 commit 61857a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_dbc.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ TEST_CASE("Signal Value Multiple VAL_") {
220220
BO_ 123 MSG1: 8 Vector__XXX
221221
SG_ State1 : 0|8@1+ (1,0) [0|200] "Km/h" DEVICE1,DEVICE2,DEVICE3
222222
SG_ State2 : 0|8@1+ (1,0) [0|204] "" DEVICE1,DEVICE2,DEVICE3
223-
VAL_ 3221225472 State1 123 "Description 1" 0 "Description 2"
224-
VAL_ 123 State1 123 "Description 3" 0 "Description 4")");
223+
VAL_ 3221225472 State1 123 "Description 1" 0 "Description 2" ;
224+
VAL_ 123 State1 123 "Description 3" 0 "Description 4" ;)");
225225

226226
auto parser = libdbc::DbcParser();
227227
parser.parse_file(filename);

0 commit comments

Comments
 (0)