Tests: Fix original_only wrapper

The wrapper function was not actually returned from the decorator
function.

Change-Id: I046fc26b89fccaeb438132b8cf7b86c1fd0aebbb
This commit is contained in:
Cyril Roelandt
2024-04-03 21:54:52 +02:00
parent 769dd2e78d
commit 98256e88c0

View File

@ -43,6 +43,7 @@ def original_only(f):
self.skipTest('Skip logging tests for session client')
return f(self, *args, **kwargs)
return wrapper
class TestClient(testtools.TestCase):