Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nin--jin committed Jun 17, 2020
1 parent 89a330a commit 6eb4cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/jin/go/queue.d
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ align(Line) class Queue(Message)
unittest
{
auto q1 = new Queue!int;
q1.size.assertEq(2047);
q1.size.assertEq(1023);

auto q2 = new Queue!long;
q2.size.assertEq(1023);
q2.size.assertEq(511);
}

/// Pending and available.
Expand Down

0 comments on commit 6eb4cc8

Please sign in to comment.