Skip to content

Commit

Permalink
after running black
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanHyatt committed Dec 8, 2023
1 parent fb159ce commit 2865b77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ class MyClass:
def method(self, *args, **kwargs):
return args, kwargs

callable_args = ('arg1', 'arg2')
callable_kwargs = {'kwarg1': 'val1', 'kwarg2':'val2'}
callable_args = ("arg1", "arg2")
callable_kwargs = {"kwarg1": "val1", "kwarg2": "val2"}
obj = MyClass()
result = Accessor('method', *callable_args, **callable_kwargs).resolve(obj)
result = Accessor("method", *callable_args, **callable_kwargs).resolve(obj)
self.assertEqual(result, (callable_args, callable_kwargs))


Expand Down

0 comments on commit 2865b77

Please sign in to comment.