Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix active_model require in webchat test
Before: ``` bundle exec rails test test/models/webchat_test.rb:20 Started with run options --seed 46747 WebchatTest test_should_return_error_if_config_is_invalid ERROR (0.00s) Minitest::UnexpectedError: NameError: uninitialized constant ActiveModel::ValidationError test/models/webchat_test.rb:25:in `block in <class:WebchatTest>' Finished in 0.00445s 1 tests, 0 assertions, 0 failures, 1 errors, 0 skips ``` After: ``` bundle exec rails test test/models/webchat_test.rb:20 Started with run options --seed 32937 WebchatTest test_should_return_error_if_config_is_invalid PASS (1.28s) Finished in 1.28149s 1 tests, 1 assertions, 0 failures, 0 errors, 0 skips ```
- Loading branch information