Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/unit/adapters/application-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ test('#findRelated can be called with optional type for the resource', function
let service = this.container.lookup('service:people');
let supervisor = this.container.lookup('model:employee').create({
type: 'supervisors',
id: 1000000,
id: '1000000',
name: 'The Boss',
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be in key attributes.

relationships: {
employees: {
Expand All @@ -131,7 +131,7 @@ test('#findRelated can be called with optional type for the resource', function
});
let resource = this.container.lookup('model:employee').create({
type: 'employees',
id: 1000001,
id: '1000001',
name: 'The Special',
relationships: {
supervisor: {
Expand Down