Skip to content

Commit 472449c

Browse files
Merge pull request #16034 from zeevick10/develop
Fix typos in test file names and macro parameters
2 parents c294948 + 2b1a9e5 commit 472449c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/libsolidity/util/TestFileParserTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ BOOST_AUTO_TEST_CASE(call_arguments_tuple_invalid_empty)
798798
BOOST_REQUIRE_THROW(parse(source), TestParserError);
799799
}
800800

801-
BOOST_AUTO_TEST_CASE(call_arguments_tuple_invalid_parantheses)
801+
BOOST_AUTO_TEST_CASE(call_arguments_tuple_invalid_parentheses)
802802
{
803803
char const* source = R"(
804804
// f((uint8,() -> FAILURE

test/tools/ossfuzz/protoToAbiV2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/// Convenience macros
77
/// Returns a valid Solidity integer width w such that 8 <= w <= 256.
8-
#define INTWIDTH(z, n, _ununsed) BOOST_PP_MUL(BOOST_PP_ADD(n, 1), 8)
8+
#define INTWIDTH(z, n, _unused) BOOST_PP_MUL(BOOST_PP_ADD(n, 1), 8)
99
/// Using declaration that aliases long boost multiprecision types with
1010
/// s(u)<width> where <width> is a valid Solidity integer width and "s"
1111
/// stands for "signed" and "u" for "unsigned".

0 commit comments

Comments
 (0)