style: fix formatting, regenerate umbrella, taplo format

This commit is contained in:
2026-03-22 20:17:58 +03:00
parent 288978c088
commit 9f4c9b4d19
14 changed files with 47 additions and 83 deletions
@@ -377,12 +377,7 @@ fn complete_course_with_max_allowed_points() {
assert_ok!(PerwerdePallet::enroll(RuntimeOrigin::signed(student), 0));
// Complete with maximum allowed points (MaxPointsPerCourse = 1000)
assert_ok!(PerwerdePallet::complete_course(
RuntimeOrigin::signed(admin),
student,
0,
1000
));
assert_ok!(PerwerdePallet::complete_course(RuntimeOrigin::signed(admin), student, 0, 1000));
let enrollment = crate::Enrollments::<Test>::get((student, 0)).unwrap();
assert_eq!(enrollment.points_earned, 1000);