# HG changeset patch # User Waqas Hussain # Date 1505669618 14400 # Node ID ea2667fc6781e8efe7bab1cc2e26398b5d52f05d # Parent 9499db96c032c239606b7789f31f8b36ed089942 util_throttle_spec: Slight stylistic update for function test group titles diff -r 9499db96c032 -r ea2667fc6781 spec/util_throttle_spec.lua --- a/spec/util_throttle_spec.lua Sun Sep 17 13:29:14 2017 -0400 +++ b/spec/util_throttle_spec.lua Sun Sep 17 13:33:38 2017 -0400 @@ -13,7 +13,7 @@ local throttle = require "util.throttle"; describe("util.throttle", function() - describe("#create", function() + describe("#create()", function() it("should be created with correct values", function() now = 5; local a = throttle.create(3, 10); @@ -33,7 +33,7 @@ end); end); - describe("#update", function() + describe("#update()", function() it("does nothing when no time hase passed, even if balance is not full", function() now = 5; local a = throttle.create(10, 10);