Skip to content

Commit

Permalink
Correcting test-script
Browse files Browse the repository at this point in the history
  • Loading branch information
BeritM committed Apr 8, 2024
1 parent 7a937ed commit b42119c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions file_test.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
import pytest
#import pytest


def test_calc_addition():
# Function test the output of 2+4
# Function test the output of 2+4
output = 2+4
assert output == 6


def test_calc_substraction():
# Function test the output of 2-4
# Function test the output of 2-4
output = 2-4
assert output == -2


def test_calc_multiply():
# Function test the output of 2*4
# Function test the output of 2*4
output = 2*4
assert output == 8


def test_coucou():
# Function test if the output return 'hello'
# Function test if the output return 'hello'
output = 'hello'
assert output == 'hello'

0 comments on commit b42119c

Please sign in to comment.