File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ function compilerErrorTest(contractName: string, errorMsg: string) {
2525}
2626
2727describe ( 'Reference Compile Errors' , ( ) => {
28- compilerErrorTest ( 'MutableRefInObjLiteral' , 'Cannot have multiple multiple references to the same object ' ) ;
29- compilerErrorTest ( 'MutableRefInObjAssignment' , 'Cannot have multiple multiple references to the same object ' ) ;
30- compilerErrorTest ( 'MutableRefInArrayLiteral' , 'Cannot have multiple multiple references to the same object ' ) ;
31- compilerErrorTest ( 'MutableRefInArrayAssignment' , 'Cannot have multiple multiple references to the same object ' ) ;
32- compilerErrorTest ( 'MutableRefInPush' , 'Cannot push to dynamic array of dynamic types ' ) ;
28+ compilerErrorTest ( 'MutableRefInObjLiteral' , 'Cannot access or create a reference to an mutable type ' ) ;
29+ compilerErrorTest ( 'MutableRefInObjAssignment' , 'Cannot access or create a reference to an mutable type ' ) ;
30+ compilerErrorTest ( 'MutableRefInArrayLiteral' , 'Cannot access or create a reference to an mutable type ' ) ;
31+ compilerErrorTest ( 'MutableRefInArrayAssignment' , 'Cannot access or create a reference to an mutable type ' ) ;
32+ compilerErrorTest ( 'MutableRefInPush' , 'Cannot access or create a reference to an mutable type ' ) ;
3333} ) ;
You can’t perform that action at this time.
0 commit comments