Commit 59cbf9a6 by Gabriel Falcao

Merge branch 'master' of https://github.com/Reldan/lettuce into Reldan-master

parents 7ed736b7 90869d06
......@@ -107,7 +107,7 @@ Python:
world.number = int(number)
@step('I compute its factorial')
def compute_its_fatorial(step):
def compute_its_factorial(step):
world.number = factorial(world.number)
@step('I see the number (\d+)')
......@@ -168,7 +168,7 @@ feature is this... we could force factorial to return 1.
world.number = int(number)
@step('I compute its factorial')
def compute_its_fatorial(step):
def compute_its_factorial(step):
world.number = factorial(world.number)
@step('I see the number (\d+)')
......@@ -275,7 +275,7 @@ scenarios, specially for number 2:
world.number = int(number)
@step('I compute its factorial')
def compute_its_fatorial(step):
def compute_its_factorial(step):
world.number = factorial(world.number)
@step('I see the number (\d+)')
......@@ -378,7 +378,7 @@ step.
world.number = int(number)
@step('I compute its factorial')
def compute_its_fatorial(step):
def compute_its_factorial(step):
world.number = factorial(world.number)
@step('I see the number (\d+)')
......
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