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
import graphlab as gl
sf = gl.SFrame({'a ': 1})
sf2 = gl.deploy.job.create(lambda x: sf, x=0).get_results()
assert sf2.column_names()[0] == 'a' # Succeeds but should fail
assert sf2.column_names()[0] == 'a ' # Fails but should succeed