diff --git a/common/src/tsv_utils/common/getopt_inorder.d b/common/src/tsv_utils/common/getopt_inorder.d index 26fcf53..5e59472 100644 --- a/common/src/tsv_utils/common/getopt_inorder.d +++ b/common/src/tsv_utils/common/getopt_inorder.d @@ -716,7 +716,7 @@ unittest // Dashes assertThrown!GetOptException(getoptInorder(args, "abc", &abc)); args = ["prog", "--abc=string"]; - assertThrown!ConvException(getoptInorder(args, "abc", &abc)); + assertThrown(getoptInorder(args, "abc", &abc)); } @system unittest // From bugzilla 7693