Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tochilinak committed Feb 7, 2024
1 parent 9208764 commit 927a3b9
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ object ServeNewDelayedForkByInstruction: DelayedForkByInstructionAction(ServeNew
random: Random
): PyPathSelectorAction<BaselineDelayedForkState> =
MakeDelayedFork(chooseDelayedFork(graph, predicate, random))

override fun toString(): String = "ServeNewDelayedForkByInstruction"
}

object ServeOldDelayedForkByInstruction: DelayedForkByInstructionAction(ServeOldDelayedFork.weight) {
Expand All @@ -78,6 +80,8 @@ object ServeOldDelayedForkByInstruction: DelayedForkByInstructionAction(ServeOld
random: Random
): PyPathSelectorAction<BaselineDelayedForkState> =
MakeDelayedFork(chooseDelayedFork(graph, predicate, random))

override fun toString(): String = "ServeOldDelayedForkByInstruction"
}

class DelayedForkByInstructionGraph(
Expand Down

0 comments on commit 927a3b9

Please sign in to comment.