Skip to content

Commit

Permalink
remove support for the deprecated complex and ireal numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
gedaiu committed Dec 11, 2021
1 parent 08a475a commit 6000bbc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion source/fluentasserts/core/lifecycle.d
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import std.conv;
import std.datetime;

alias BasicNumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real);
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real, ifloat, idouble, ireal, cfloat, cdouble, creal, char, wchar, dchar);
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real/* , ifloat, idouble, ireal, cfloat, cdouble, creal, char, wchar, dchar*/);
alias StringTypes = AliasSeq!(string, wstring, dstring, const(char)[]);

static this() {
Expand Down
2 changes: 1 addition & 1 deletion test/operations/arrayContain.d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import std.algorithm;
import std.range;

alias s = Spec!({
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real, ifloat, idouble, ireal, cfloat, cdouble, creal);
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real /*, ifloat, idouble, ireal, cfloat, cdouble, creal*/);
static foreach(Type; NumericTypes) {
describe("using a range of " ~ Type.stringof, {
Type[] testValues;
Expand Down
2 changes: 1 addition & 1 deletion test/operations/arrayEqual.d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import std.meta;
alias s = Spec!({

alias StringTypes = AliasSeq!(string, wstring, dstring);
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real, ifloat, idouble, ireal, cfloat, cdouble, creal);
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real /*, ifloat, idouble, ireal, cfloat, cdouble, creal*/);

static foreach(Type; StringTypes) {
describe("using an array of " ~ Type.stringof, {
Expand Down
2 changes: 1 addition & 1 deletion test/operations/containOnly.d
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ alias s = Spec!({
});
}

alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real, ifloat, idouble, ireal, cfloat, cdouble, creal);
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real/*, ifloat, idouble, ireal, cfloat, cdouble, creal*/);
static foreach(Type; NumericTypes) {
describe("using a range of " ~ Type.stringof, {
Type[] testValues;
Expand Down
2 changes: 1 addition & 1 deletion test/operations/equal.d
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ alias s = Spec!({
});
}

alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real, ifloat, idouble, ireal, cfloat, cdouble, creal);
alias NumericTypes = AliasSeq!(byte, ubyte, short, ushort, int, uint, long, ulong, float, double, real /*, ifloat, idouble, ireal, cfloat, cdouble, creal*/);

static foreach(Type; NumericTypes) {
describe("using " ~ Type.stringof ~ " values", {
Expand Down

0 comments on commit 6000bbc

Please sign in to comment.