File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
abi-parser/src/test/java/com/openelements/hiero/smartcontract/abi/test Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,10 @@ void testEventSignatureCreation() {
1919
2020
2121 // When
22- String signature = event .createEventSignature ();
23- String hashAsHex = event .createEventSignatureHashAsHex ();
22+ String hex = event .createEventSignatureHashAsHex ();
2423
2524 // Then
26- Assertions .assertEquals ("HashAdded(string)" , signature );
27- Assertions .assertEquals ("0xe0c9f5e6f5abddac86dac0e02afc9f3fda7b7fc6d9454a13c51fcb28621e1e5f" , hashAsHex );
25+ Assertions .assertEquals ("0xe0c9f5e6f5abddac86dac0e02afc9f3fda7b7fc6d9454a13c51fcb28621e1e5f" , hex );
2826 }
2927
3028 @ Test
@@ -37,12 +35,10 @@ void testEventSignatureCreation2() {
3735
3836
3937 // When
40- String signature = event .createEventSignature ();
41- String hashAsHex = event .createEventSignatureHashAsHex ();
38+ String hex = event .createEventSignatureHashAsHex ();
4239
4340 // Then
44- Assertions .assertEquals ("MissingVerificationCountUpdated(uint256)" , signature );
45- Assertions .assertEquals ("0x271219bdbb9b91472a5df68ef7a9d3f8de02f3c27b93a35306f888acf081ea60" , hashAsHex );
41+ Assertions .assertEquals ("0x271219bdbb9b91472a5df68ef7a9d3f8de02f3c27b93a35306f888acf081ea60" , hex );
4642 }
4743
4844}
You can’t perform that action at this time.
0 commit comments