Skip to content

Commit

Permalink
fix: Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisBurger committed Nov 19, 2024
1 parent 92a96ac commit 396007c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasky/tests/security/group_test.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use crate::security::get_student;
use crate::security::get_student_with_group;
use crate::security::get_tutor;
use crate::security::get_tutor_with_group;

Expand Down Expand Up @@ -81,7 +82,7 @@ fn test_read_group_as_wrong_tutor() {

#[test]
fn test_read_group_as_student() {
let admin = get_student();
let admin = get_student_with_group();
let mut group = Group {
id: 1,
title: "group".to_string(),
Expand Down

0 comments on commit 396007c

Please sign in to comment.