diff options
| author | Michele Simionato <michele.simionato@gmail.com> | 2019-03-16 06:55:10 +0100 |
|---|---|---|
| committer | Michele Simionato <michele.simionato@gmail.com> | 2019-03-16 06:55:10 +0100 |
| commit | 0951f62e60514e6791b84db820508827a29f9cfa (patch) | |
| tree | f74a3d3c51ced109204214b0217ec8e540f23e58 /src/tests | |
| parent | 0e00deef6c262de02be07db9d4963b2ff9863451 (diff) | |
| download | python-decorator-git-0951f62e60514e6791b84db820508827a29f9cfa.tar.gz | |
Fixed test
Diffstat (limited to 'src/tests')
| -rw-r--r-- | src/tests/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test.py b/src/tests/test.py index 9068b11..d73fbe4 100644 --- a/src/tests/test.py +++ b/src/tests/test.py @@ -157,7 +157,7 @@ class ExtraTestCase(unittest.TestCase): def f(x): return x - self.assertEqual(add(2, f)(0), 2) + self.assertEqual(add(f, 2)(0), 2) # ################### test dispatch_on ############################# # |
