diff --git a/tests/test.py b/tests/test.py deleted file mode 100644 index d264625..0000000 --- a/tests/test.py +++ /dev/null @@ -1,19 +0,0 @@ -__author__ = 'nico' - - -class A: - def __init__(self): - self.a = 0 - - - -def do(a): - a.a = 1 - - - -if __name__ == '__main__': - a=A() - print(a.a) - do(a) - print(a.a)