Skip to content

Commit 52bfb8b

Browse files
wechmancameel
authored andcommitted
Minor test naming/style corrections
1 parent b66cea1 commit 52bfb8b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

test/libsolidity/analysis/FunctionCallGraph.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1673,7 +1673,7 @@ BOOST_AUTO_TEST_CASE(using_for)
16731673
contract C {
16741674
using L for S;
16751675
1676-
function test() public {
1676+
function pub() public {
16771677
S memory s = S(42);
16781678
16791679
s.ext();
@@ -1693,8 +1693,8 @@ BOOST_AUTO_TEST_CASE(using_for)
16931693
{"Entry", "function L.ext(struct S)"},
16941694
}},
16951695
{"C", {
1696-
{"Entry", "function C.test()"},
1697-
{"function C.test()", "function L.inr(struct S)"},
1696+
{"Entry", "function C.pub()"},
1697+
{"function C.pub()", "function L.inr(struct S)"},
16981698
}},
16991699
};
17001700

test/libsolidity/syntaxTests/controlFlow/localStorageVariables/ternary_assignment_fine.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ contract C {
66
y;
77
}
88
}
9-
// ---
109
// ----

0 commit comments

Comments
 (0)