projects
/
nmigen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c698be
)
test.test_lib_fifo: fix typo.
author
whitequark
<cz@m-labs.hk>
Fri, 20 Sep 2019 11:53:05 +0000
(11:53 +0000)
committer
whitequark
<cz@m-labs.hk>
Fri, 20 Sep 2019 11:53:05 +0000
(11:53 +0000)
nmigen/test/test_lib_fifo.py
patch
|
blob
|
history
diff --git
a/nmigen/test/test_lib_fifo.py
b/nmigen/test/test_lib_fifo.py
index 64c2e3aee25be3fd1c2fe7b27b96c54c7a55526f..9a8c9c182a9f0b3eb350224cdd48279f6236d8b5 100644
(file)
--- a/
nmigen/test/test_lib_fifo.py
+++ b/
nmigen/test/test_lib_fifo.py
@@
-32,7
+32,7
@@
class FIFOSmokeTestCase(FHDLTestCase):
self.assertSyncFIFOWorks(SyncFIFO(width=8, depth=4, fwft=False))
def test_sync_buffered(self):
- self.assertSyncFIFOWorks(SyncFIFO
(width=8, depth=4, fwft=True
))
+ self.assertSyncFIFOWorks(SyncFIFO
Buffered(width=8, depth=4
))
def test_async(self):
self.assertAsyncFIFOWorks(AsyncFIFO(width=8, depth=4))