Fix coding standards (empty blocks)

This commit is contained in:
Thibault Jouan
2014-01-08 22:16:51 +00:00
parent 9971283841
commit 56ea377e31
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ require 'spec_helper'
module Producer::Core
describe Task::DSL do
let(:block) { proc { } }
let(:block) { proc {} }
let(:env) { double 'env' }
subject(:dsl) { Task::DSL.new(env, &block) }