Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pozil committed Jan 17, 2022
1 parent 4df35a8 commit b48bf6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/__tests__/action.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const {
} = require('../action.js');

const TEAMS_MEMBERS = {
teamA: [{ login: 'userA1' }, { login: 'userA2' }],
teamB: [{ login: 'userB1' }]
teamA: { data: [{ login: 'userA1' }, { login: 'userA2' }] },
teamB: { data: [{ login: 'userB1' }] }
};
const CONTEXT_PAYLOAD = {
repository: { full_name: 'mockOrg/mockRepo' },
Expand Down

0 comments on commit b48bf6f

Please sign in to comment.