1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Sruthi Chandran <srud@disroot.org>
Date: Thu, 21 Sep 2017 13:15:52 +0530
Subject: Add require line to fix test failure
---
spec/celluloid/actor/system_spec.rb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/spec/celluloid/actor/system_spec.rb b/spec/celluloid/actor/system_spec.rb
index 4e92f18..f9f6cbc 100644
--- a/spec/celluloid/actor/system_spec.rb
+++ b/spec/celluloid/actor/system_spec.rb
@@ -1,3 +1,5 @@
+require 'spec_helper.rb'
+
RSpec.describe Celluloid::Actor::System do
class TestActor
include Celluloid
|