Skip to content
Snippets Groups Projects
Commit cbf29064 authored by blackst0ne's avatar blackst0ne
Browse files

[Rails5] Fix `undefined method 'arel_table' for Ci::Group:Class` error

Some specs fail in rails5 branch with errors like

```
1) Group#secret_variables_for when the ref is not protected contains only the secret variables
    Failure/Error: variables = Ci::GroupVariable.where(group: list_of_ids)

    NoMethodError:
      undefined method `arel_table' for Ci::Group:Class
```

This commit fixes it.
parent 947ed8b8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,7 @@ module Ci
include HasVariable
include Presentable
 
belongs_to :group
belongs_to :group, class_name: "::Group"
 
alias_attribute :secret_value, :value
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment