Skip to content

Commit 6ba7ad6

Browse files
committed
Update tests
1 parent 69cd010 commit 6ba7ad6

File tree

6 files changed

+7
-134
lines changed

6 files changed

+7
-134
lines changed
File renamed without changes.
File renamed without changes.

tests/hevm/fail/shape/shape.act

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,3 @@ iff
6868
creates
6969
A a := y.a
7070
B b := y
71-
72-
behaviour change of C
73-
interface change()
74-
75-
iff
76-
77-
CALLVALUE == 0
78-
79-
storage
80-
a => create A(42)

tests/hevm/fail/shape/shape.sol

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ contract A {
44
uint public x;
55

66
constructor (uint z) {
7-
x = z;
7+
x = z;
88
}
99

1010
function set_x(uint z) public{
11-
x = z;
11+
x = z;
1212
}
1313
}
1414

@@ -17,8 +17,8 @@ contract B {
1717
A public a;
1818

1919
constructor (uint z) {
20-
y = z;
21-
a = new A(0);
20+
y = z;
21+
a = new A(0);
2222
}
2323
}
2424

@@ -27,11 +27,11 @@ contract C {
2727
B b;
2828

2929
constructor (address y) {
30-
a = B(y).a();
31-
b = B(y);
30+
a = B(y).a();
31+
b = B(y);
3232
}
3333

3434
function change() public {
35-
a = new A(42);
35+
a = new A(42);
3636
}
3737
}

tests/hevm/pass/shape/shape.act

Lines changed: 0 additions & 80 deletions
This file was deleted.

tests/hevm/pass/shape/shape.sol

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)