Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions espresso/enclave-tests/enclave_smoke_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import (
env "github.com/ethereum-optimism/optimism/espresso/environment"
)

// TestE2eDevNetWithEspressoSimpleTransactions launches the e2e Dev Net with the Espresso Dev Node
// and runs a couple of simple transactions to it.
func TestE2eDevNetWithEspressoSimpleTransactions(t *testing.T) {
// TestE2eDevNetWithEspressoAndEnclaveSimpleTransactions launches the e2e Dev Net with the Espresso
// Dev Node in Enclave and runs a couple of simple transactions to it.
func TestE2eDevNetWithEspressoAndEnclaveSimpleTransactions(t *testing.T) {
Comment thread
Ayiga marked this conversation as resolved.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

Expand Down
4 changes: 2 additions & 2 deletions espresso/environment/espresso_dev_node_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ func TestE2eDevNetWithEspressoSimpleTransactions(t *testing.T) {

}

// TestE2eDevNetWithEspressoSimpleTransactions launches the e2e Dev Net with the Espresso Dev Node
// and runs a couple of simple transactions to it.
// TestE2eDevNetWithEspressoAndAltDaSimpleTransactions launches the e2e Dev Net with the Espresso
// Dev Node in AltDA mode and runs a couple of simple transactions to it.
func TestE2eDevNetWithEspressoAndAltDaSimpleTransactions(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
Expand Down