From 13cc2efaea5722c61f349cc9c80a0f1ee41d1da0 Mon Sep 17 00:00:00 2001 From: s45148 Date: Sun, 19 Nov 2017 14:58:57 +0100 Subject: [PATCH] z1 --- labs02/test_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs02/test_task.py b/labs02/test_task.py index 5879768..49e5fd9 100755 --- a/labs02/test_task.py +++ b/labs02/test_task.py @@ -6,7 +6,7 @@ def suma(a, b): """ Napisz funkcję, która zwraca sumę elementów. """ - pass + return a + b def tests(f): inputs = [(2, 3), (0, 0), (1, 1)]