Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
desmonddak committed Sep 19, 2024
1 parent 71dc162 commit 02c0675
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/serialization_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ void main() {
await Simulator.reset();
});

/// This test pauses the serializer during processing at each count level
/// to ensure that it completes correctly (monitoring the count and done)
// This test pauses the serializer during processing at each count level
// to ensure that it completes correctly (monitoring the count and done)
test('serializer', () async {
const len = 10;
const width = 8;
Expand Down Expand Up @@ -186,9 +186,9 @@ void main() {
await Simulator.endSimulation();
});

/// This test does a careful check of the data transfer sequence to make sure
/// data transfer is in expected order by sequencing in first a set of 1s and
/// then a set of zeros and checking all transfers.
// This test does a careful check of the data transfer sequence to make sure
// data transfer is in expected order by sequencing in first a set of 1s and
// then a set of zeros and checking all transfers.
test('deserializer rollover', () async {
const len = 6;
const width = 4;
Expand Down Expand Up @@ -243,8 +243,8 @@ void main() {
await Simulator.endSimulation();
});

/// This test uses enable to pause the deserialization once at each count level
/// to ensure it completes and fires done at the right time.
// This test uses enable to pause the deserialization once at each count level
// to ensure it completes and fires done at the right time.
test('deserializer enable', () async {
const len = 6;
const width = 4;
Expand Down Expand Up @@ -316,8 +316,8 @@ void main() {
await Simulator.endSimulation();
});

/// This test ensures that the clock cycles and counts of the serializer
/// line up when doing back-to-back transfers.
// This test ensures that the clock cycles and counts of the serializer
// line up when doing back-to-back transfers.
test('serializer timing', () async {
const len = 10;
const width = 8;
Expand Down

0 comments on commit 02c0675

Please sign in to comment.