acutally I was checking on the quotas.
thats when I notice that the tablespace_name was from the old one.

select username, tablespace_name, bytes /1024 "MB"
decode(max_bytes,-1,'unlimited', rpad(max_bytes /1024, 9)) "MB"
from dba_ts_quotas
order by 1, 2;