1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

AK: Remove bogus test case for CircularDuplexStream.

This commit is contained in:
asynts 2020-12-19 21:19:59 +01:00 committed by Andreas Kling
parent 71587ea241
commit 72cbca892a
2 changed files with 5 additions and 32 deletions

View file

@ -54,7 +54,8 @@ public:
return false;
}
write(bytes);
const auto nwritten = write(bytes);
ASSERT(nwritten == bytes.size());
return true;
}