Commit 916547cc authored by Adrian Sutton's avatar Adrian Sutton

op-e2e: Skip e2e test for known corner case

parent 0a6023cb
......@@ -36,11 +36,6 @@ func (s *Solver) NextMove(ctx context.Context, claim types.Claim, agreeWithClaim
if claim.Depth() == s.gameDepth {
return nil, types.ErrGameDepthReached
}
if claim.IsRoot() {
// We can't defend the root claim so attack regardless of whether we agree or not
// This isn't necessarily the right solution...
return s.attack(ctx, claim)
}
agree, err := s.agreeWithClaim(ctx, claim.ClaimData)
if err != nil {
return nil, err
......
......@@ -291,6 +291,7 @@ func TestCannonDefendStep(t *testing.T) {
}
func TestCannonChallengeWithCorrectRoot(t *testing.T) {
t.Skip("Not currently handling this case as the correct approach will change when output root bisection is added")
InitParallel(t)
ctx := context.Background()
......
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