Skip to content

Commit 0fa2269

Browse files
committed
The second argument to java_type_from_string is optional
1 parent e8a4980 commit 0fa2269

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jbmc/unit/java_bytecode/java_types/java_type_from_string.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ SCENARIO("java_type_from_string", "[core][java_types]")
1515

1616
GIVEN("Ljava/lang/Integer;")
1717
{
18-
const auto integer_type = java_type_from_string("Ljava/lang/Integer;", "");
18+
const auto integer_type = java_type_from_string("Ljava/lang/Integer;");
1919
REQUIRE(integer_type.has_value());
2020
}
2121

@@ -35,7 +35,7 @@ SCENARIO("java_type_from_string", "[core][java_types]")
3535
GIVEN("Ljava/util/List<Ljava/lang/Integer>;")
3636
{
3737
const auto integer_list_type =
38-
java_type_from_string("Ljava/util/List<Ljava/lang/Integer;>;", "");
38+
java_type_from_string("Ljava/util/List<Ljava/lang/Integer;>;");
3939
REQUIRE(integer_list_type.has_value());
4040
}
4141

0 commit comments

Comments
 (0)