tests: rename tests with duplicate names

This commit is contained in:
Robin Ole Heinemann 2021-05-18 21:18:14 +02:00 committed by whitequark
parent b93a54ac58
commit 2d85f888d6
2 changed files with 2 additions and 2 deletions

View file

@ -561,7 +561,7 @@ class OperatorTestCase(FHDLTestCase):
v = Const(0b101).all()
self.assertEqual(repr(v), "(r& (const 3'd5))")
def test_xor(self):
def test_xor_value(self):
v = Const(0b101).xor()
self.assertEqual(repr(v), "(r^ (const 3'd5))")

View file

@ -424,7 +424,7 @@ class FragmentDomainsTestCase(FHDLTestCase):
None: SignalSet((ResetSignal("b_sync"),))
}))
def test_domain_conflict_rename_drivers(self):
def test_domain_conflict_rename_drivers_before_creating_missing(self):
cda = ClockDomain("sync")
cdb = ClockDomain("sync")
s = Signal()