From 539681fffd96082ca3b5d18643d4f08f65c47170 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 5 Jul 2014 06:14:29 +0100 Subject: tests: Rename test scripts, changing - to _ for consistency. From now on, all new tests must use underscore. Addresses issue #727. --- tests/basics/int-big-mul.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 tests/basics/int-big-mul.py (limited to 'tests/basics/int-big-mul.py') diff --git a/tests/basics/int-big-mul.py b/tests/basics/int-big-mul.py deleted file mode 100644 index f8d3dcd80..000000000 --- a/tests/basics/int-big-mul.py +++ /dev/null @@ -1,8 +0,0 @@ -# tests transition from small to large int representation by multiplication -for rhs in range(2, 11): - lhs = 1 - for k in range(100): - res = lhs * rhs - print(lhs, '*', rhs, '=', res) - lhs = res - -- cgit v1.2.3