Skip to content

Commit

Permalink
fixed seed
Browse files Browse the repository at this point in the history
  • Loading branch information
domonik committed Nov 8, 2022
1 parent 4f603e9 commit d628f19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_exercise_sheet2.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from exercise_sheet2 import *
from random import randint
from random import randint, seed
import pytest


random.seed(42)
seed(42)


def deletion_generator():
Expand Down

0 comments on commit d628f19

Please sign in to comment.