You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test_custom_var_and_value_name refers to several variables which aren't defined, namely df, var_name, and value_name, all of which should probably have self. in front of them:
and so the original test is getting clobbered. I'm not sure if they should be merged or if since the second one changes self.df it needs to be kept on its own or not.
The text was updated successfully, but these errors were encountered:
test_custom_var_and_value_name
refers to several variables which aren't defined, namelydf
,var_name
, andvalue_name
, all of which should probably haveself.
in front of them:But I was a little surprised that this wasn't causing an exception, and it turns out to be because
test_reshape.py
containsand so the original test is getting clobbered. I'm not sure if they should be merged or if since the second one changes
self.df
it needs to be kept on its own or not.The text was updated successfully, but these errors were encountered: