- Removed duplicate test
This commit is contained in:
Tristan B. Velloza Kildaire 2023-09-26 14:59:19 +02:00
parent 506a9bb554
commit f878136746
1 changed files with 0 additions and 17 deletions

View File

@ -121,23 +121,6 @@ unittest
}
unittest
{
version(LittleEndian)
{
ushort i = 1;
writeln("Pre-order: ", i);
ushort ordered = order(i, Order.BE);
writeln("Post-order: ", ordered);
assert(ordered == 256);
}
else version(BigEndian)
{
// TODO: Add this AND CI tests for it
}
}
/**
* Checks if the given value is present in
* the given array