Renamed tests to test

This commit is contained in:
Alvin Philips 2021-10-19 06:24:52 +05:30
parent 54143f2450
commit 41af1e4d21

View File

@ -166,12 +166,12 @@ void test2() {
}
} // namespace tests
static void tests() {
static void test() {
tests::test1();
tests::test2();
}
int main() {
tests();
test();
return 0;
}