Hi Tim,

Tim Ruehsen <[email protected]> writes:

> @@ -27,7 +28,7 @@ class BaseTest:
>          Define the class-wide variables (or attributes).
>          Attributes should not be defined outside __init__.
>          """
> -        self.name = name
> +        self.name = os.path.basename(os.path.realpath(sys.argv[0]))
>          # if pre_hook == None, then {} (an empty dict object) is passed to
>          # self.pre_configs
>          self.pre_configs = pre_hook or {}

shouldn't we remove name from __init__?

Regards,
Giuseppe

Reply via email to