diff options
| author | mrmr1993 | 2016-02-16 13:48:20 +0000 | 
|---|---|---|
| committer | mrmr1993 | 2016-02-16 13:48:20 +0000 | 
| commit | 56fed2ac6663d99ca03023f3ffa313c51de5fe32 (patch) | |
| tree | 53279879b1549a597b71de93530d0feb8ab6f044 /tests/unit_tests/test_helper.coffee | |
| parent | ceada9cdf8cb97c35b4871553e3c8b642c4806ef (diff) | |
| download | vimium-56fed2ac6663d99ca03023f3ffa313c51de5fe32.tar.bz2 | |
Use `for own ... of` instead of `for ... of`
Diffstat (limited to 'tests/unit_tests/test_helper.coffee')
| -rw-r--r-- | tests/unit_tests/test_helper.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/test_helper.coffee b/tests/unit_tests/test_helper.coffee index bb73bf54..ae2266cf 100644 --- a/tests/unit_tests/test_helper.coffee +++ b/tests/unit_tests/test_helper.coffee @@ -1,5 +1,5 @@  require("../shoulda.js/shoulda.js")  global.extend = (hash1, hash2) -> -  for key of hash2 +  for own key of hash2      hash1[key] = hash2[key]    hash1  | 
