aboutsummaryrefslogtreecommitdiffstats
path: root/lib/percept/test/ipc_tree.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2016-03-16 19:02:13 +0100
committerBjörn-Egil Dahlberg <[email protected]>2016-03-16 19:44:58 +0100
commit86743354292ef497401303b6e8566b6f3f738b96 (patch)
treeb2d7afd395447ce8568b6ba991b53fa8d626328c /lib/percept/test/ipc_tree.erl
parente7473f6810b249d1115361f005fb8b44fe59f474 (diff)
downloadotp-86743354292ef497401303b6e8566b6f3f738b96.tar.gz
otp-86743354292ef497401303b6e8566b6f3f738b96.tar.bz2
otp-86743354292ef497401303b6e8566b6f3f738b96.zip
Modernize test suites
Diffstat (limited to 'lib/percept/test/ipc_tree.erl')
-rw-r--r--lib/percept/test/ipc_tree.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/percept/test/ipc_tree.erl b/lib/percept/test/ipc_tree.erl
index ff1c8d49c1..29da20e83f 100644
--- a/lib/percept/test/ipc_tree.erl
+++ b/lib/percept/test/ipc_tree.erl
@@ -46,4 +46,4 @@ gather([]) -> ok;
gather([_|Pids]) -> receive _ -> gather(Pids) end.
workload(0) -> ok;
-workload(N) -> math:sin(2), workload(N - 1).
+workload(N) -> _ = math:sin(2), workload(N - 1).