***Channel Family***
--------
When you create a clone/custom channel at that moment a new family is created and the name of the family is taken from the owner of the activated satellite certificate,so, when at the moment when initially you created ur own custom channels at that moment the owner of the sat cert was "Red Hat Internal Test Cert". So it took this as the channel family name and under this all clone / custom channel are present
--------
You cannot remove the channel family, you can rename it.
# su - oracle
# sqlplus rhnsat/rhnsat@rhnsat
SQL> select ID,NAME from rhnChannelFamily where NAME='Old Family Name';
The above command is to verify that the channel name exists and isunique
SQL> update rhnChannelFamily set NAME='SHPS' where NAME='New Family Name';
SQL> COMMIT;
SQL> update rhnChannelFamily set NAME='NEw Name' where NAME='Old Family Name';