Commit d1718ac2 authored by Andreas Bigger's avatar Andreas Bigger

wut

parent e79b17c6
package batcher_test package batcher_test
import ( import (
"math"
"testing" "testing"
"github.com/ethereum-optimism/optimism/op-batcher/batcher" "github.com/ethereum-optimism/optimism/op-batcher/batcher"
...@@ -35,6 +34,5 @@ func TestInputThreshold(t *testing.T) { ...@@ -35,6 +34,5 @@ func TestInputThreshold(t *testing.T) {
// The input threshold will overflow to the max uint64 value // The input threshold will overflow to the max uint64 value
receivedThreshold := config.InputThreshold() receivedThreshold := config.InputThreshold()
var maxUint64 uint64 = math.MaxUint64 require.Equal(t, uint64(0xffffffffffffffff), receivedThreshold)
require.Equal(t, maxUint64, receivedThreshold)
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment