Remove hyphen from rand_name calls in baremetal tests

data_utils.rand_name() appends randam charactors with a hypen like:

 def rand_name(name=''):
     randbits = str(random.randint(1, 0x7fffffff))
     if name:
         return name + '-' + randbits

So it is not necessary to specify a hypen in caller side.
This patch removes a hypen in baremetal tests.

Change-Id: I43fde9b537f7d225266ebb3950b6768aa7ae9fae
2 files changed