diff options
author | Yasuo Honda <yasuo.honda@gmail.com> | 2019-02-15 02:06:36 +0000 |
---|---|---|
committer | Yasuo Honda <yasuo.honda@gmail.com> | 2019-02-15 02:10:38 +0000 |
commit | 15e37b1fade3786ce13a2c81fedc55baccf45f34 (patch) | |
tree | 6d3fe332197a5af8e63abe05a004eedb79a392cb /actioncable | |
parent | c43c83984792ac546e7610c898cf9099cc1a2ee6 (diff) | |
download | rails-15e37b1fade3786ce13a2c81fedc55baccf45f34.tar.gz rails-15e37b1fade3786ce13a2c81fedc55baccf45f34.tar.bz2 rails-15e37b1fade3786ce13a2c81fedc55baccf45f34.zip |
Address uninitialized constant PostgresqlAdapterTest::ChannelPrefixTest (NameError)
```
$ bundle exec ruby -w -Itest test/subscription_adapter/postgresql_test.rb
Traceback (most recent call last):
1: from test/subscription_adapter/postgresql_test.rb:8:in `<main>'
test/subscription_adapter/postgresql_test.rb:10:in `<class:PostgresqlAdapterTest>': uninitialized constant PostgresqlAdapterTest::ChannelPrefixTest (NameError)
```
https://travis-ci.org/rails/rails/jobs/493530508
Follow up #35276
Diffstat (limited to 'actioncable')
-rw-r--r-- | actioncable/test/subscription_adapter/postgresql_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actioncable/test/subscription_adapter/postgresql_test.rb b/actioncable/test/subscription_adapter/postgresql_test.rb index d262536d61..4348eb1b1e 100644 --- a/actioncable/test/subscription_adapter/postgresql_test.rb +++ b/actioncable/test/subscription_adapter/postgresql_test.rb @@ -2,6 +2,7 @@ require "test_helper" require_relative "common" +require_relative "channel_prefix" require "active_record" |