diff --git a/teil15/.gitignore b/teil15/.gitignore index 94a378f..c7fb3aa 100644 --- a/teil15/.gitignore +++ b/teil15/.gitignore @@ -1,3 +1,2 @@ ./__pycache__ -*.log ./network/__pycache__/* diff --git a/teil15/network/__pycache__/__init__.cpython-39.pyc b/teil15/network/__pycache__/__init__.cpython-39.pyc deleted file mode 100644 index 66f1280..0000000 Binary files a/teil15/network/__pycache__/__init__.cpython-39.pyc and /dev/null differ diff --git a/teil15/network/__pycache__/const.cpython-39.pyc b/teil15/network/__pycache__/const.cpython-39.pyc deleted file mode 100644 index 0e3b26c..0000000 Binary files a/teil15/network/__pycache__/const.cpython-39.pyc and /dev/null differ diff --git a/testing/__pycache__/fib.cpython-39.pyc b/testing/__pycache__/fib.cpython-39.pyc index a851b6f..f8181ff 100644 Binary files a/testing/__pycache__/fib.cpython-39.pyc and b/testing/__pycache__/fib.cpython-39.pyc differ diff --git a/testing/unittestfib.py b/testing/unittestfib.py index 818eb23..3cd4ea2 100644 --- a/testing/unittestfib.py +++ b/testing/unittestfib.py @@ -52,8 +52,6 @@ class TestFib(unittest.TestCase): if isinstance(key, numbers.Number): #Überspringen der Überschriftenzeile self.assertEqual(result, fib(int(key))) - print(f'Testdatentyp: ${type(data)}') - print(f'Testdaten ${results}') if __name__ == '__main__': unittest.main()