@@ -511,7 +511,7 @@ describe('@debug API Acceptance Tests', function () {
511511 } ) ;
512512
513513 describe ( 'OpcodeLogger' , ( ) => {
514- it ( '@release should trace a successful transaction using OpcodeLogger (default when no tracer specified)' , async function ( ) {
514+ it ( 'should trace a successful transaction using OpcodeLogger (default when no tracer specified)' , async function ( ) {
515515 const result = await relay . call ( DEBUG_TRACE_TRANSACTION , [ createChildTx . hash ] ) ;
516516
517517 // Validate response structure for OpcodeLogger
@@ -528,13 +528,13 @@ describe('@debug API Acceptance Tests', function () {
528528 }
529529 } ) ;
530530
531- it ( '@release should trace a successful transaction using OpcodeLogger explicitly' , async function ( ) {
531+ it ( 'should trace a successful transaction using OpcodeLogger explicitly' , async function ( ) {
532532 const result = await relay . call ( DEBUG_TRACE_TRANSACTION , [ createChildTx . hash , TRACER_CONFIGS . OPCODE_LOGGER ] ) ;
533533
534534 Assertions . validateOpcodeLoggerResult ( result ) ;
535535 } ) ;
536536
537- it ( '@release should trace using OpcodeLogger with custom config (enableMemory=true)' , async function ( ) {
537+ it ( 'should trace using OpcodeLogger with custom config (enableMemory=true)' , async function ( ) {
538538 const result = await relay . call ( DEBUG_TRACE_TRANSACTION , [
539539 createChildTx . hash ,
540540 TRACER_CONFIGS . OPCODE_WITH_MEMORY ,
@@ -550,7 +550,7 @@ describe('@debug API Acceptance Tests', function () {
550550 }
551551 } ) ;
552552
553- it ( '@release should trace using OpcodeLogger with custom config (disableStack=true)' , async function ( ) {
553+ it ( 'should trace using OpcodeLogger with custom config (disableStack=true)' , async function ( ) {
554554 const result = await relay . call ( DEBUG_TRACE_TRANSACTION , [
555555 createChildTx . hash ,
556556 TRACER_CONFIGS . OPCODE_WITH_STACK ,
@@ -566,7 +566,7 @@ describe('@debug API Acceptance Tests', function () {
566566 }
567567 } ) ;
568568
569- it ( '@release should trace using OpcodeLogger with custom config (disableStorage=true)' , async function ( ) {
569+ it ( 'should trace using OpcodeLogger with custom config (disableStorage=true)' , async function ( ) {
570570 const result = await relay . call ( DEBUG_TRACE_TRANSACTION , [
571571 createChildTx . hash ,
572572 TRACER_CONFIGS . OPCODE_WITH_STORAGE ,
@@ -582,7 +582,7 @@ describe('@debug API Acceptance Tests', function () {
582582 }
583583 } ) ;
584584
585- it ( '@release should trace using OpcodeLogger with custom config (enableMemory=true, disableStorage=true)' , async function ( ) {
585+ it ( 'should trace using OpcodeLogger with custom config (enableMemory=true, disableStorage=true)' , async function ( ) {
586586 const result = await relay . call ( DEBUG_TRACE_TRANSACTION , [
587587 createChildTx . hash ,
588588 TRACER_CONFIGS . OPCODE_WITH_MEMORY_AND_STORAGE ,
0 commit comments