Skip to content

Commit 237142a

Browse files
committed
Fix assignment
1 parent 6cfbb21 commit 237142a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

lib/travis/api/v3/models/executions.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,17 @@ def initialize(attributes = {})
2626
@repo_slug = nil
2727
@repo_owner_name = nil
2828
end
29+
30+
def sender_login=(sender_login)
31+
@sender_login = sender_login
32+
end
33+
34+
def repo_slug=(repo_slug)
35+
@repo_slug = repo_slug
36+
end
37+
38+
def repo_owner_name=(repo_owner_name)
39+
@repo_owner_name = repo_owner_name
40+
end
2941
end
3042
end

0 commit comments

Comments
 (0)