Skip to content
Merged
Show file tree
Hide file tree
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 src/library-authoring/import-course/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ const messages = defineMessages({
},
importCourseDetailsTitle: {
id: 'course-authoring.library-authoring.import-course.review-details.import-details.title',
defaultMessage: 'Import Details',
description: 'Title of the card for the import details of a imported course.',
defaultMessage: 'Analysis Details',
description: 'Title of the card for the analysis details of a imported course.',
},
importCourseDetailsLoadingBody: {
id: 'course-authoring.library-authoring.import-course.review-details.import-details.loading.body',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe('<ImportStepperModal />', () => {
)).toBeInTheDocument());

expect(screen.getByText('Analysis Summary')).toBeInTheDocument();
expect(screen.getByText('Import Details')).toBeInTheDocument();
expect(screen.getByText('Analysis Details')).toBeInTheDocument();
// The import details is loading
expect(screen.getByText('The selected course is being analyzed for import and review')).toBeInTheDocument();
});
Expand Down