]> Untitled Git - lemmy.git/commitdiff
Fixing unit tests.
authorDessalines <tyhou13@gmx.com>
Mon, 8 Apr 2019 05:35:18 +0000 (22:35 -0700)
committerDessalines <tyhou13@gmx.com>
Mon, 8 Apr 2019 05:35:18 +0000 (22:35 -0700)
server/src/actions/comment_view.rs
server/src/actions/post_view.rs

index 417a677250683ea9518482fdc06702f2ffa07d2b..3b4e00bb87d1e2405d28932ba64a38ebd61b19a0 100644 (file)
@@ -208,8 +208,8 @@ mod tests {
       my_vote: Some(1),
     };
 
-    let read_comment_views_no_user = CommentView::list(&conn, inserted_post.id, None).unwrap();
-    let read_comment_views_with_user = CommentView::list(&conn, inserted_post.id, Some(inserted_user.id)).unwrap();
+    let read_comment_views_no_user = CommentView::list(&conn, &SortType::New, Some(inserted_post.id), None, None, 999).unwrap();
+    let read_comment_views_with_user = CommentView::list(&conn, &SortType::New, Some(inserted_post.id), None, Some(inserted_user.id), 999).unwrap();
     let like_removed = CommentLike::remove(&conn, &comment_like_form).unwrap();
     let num_deleted = Comment::delete(&conn, inserted_comment.id).unwrap();
     Post::delete(&conn, inserted_post.id).unwrap();
index 6afba18d58d42a357f6013d3c9d194d7058acde1..6ca85c3419c390f528a18f44fd10621ded8dec03 100644 (file)
@@ -249,8 +249,8 @@ mod tests {
     };
 
 
-    let read_post_listings_with_user = PostView::list(&conn, PostListingType::Community, SortType::New, Some(inserted_community.id), Some(inserted_user.id), 10).unwrap();
-    let read_post_listings_no_user = PostView::list(&conn, PostListingType::Community, SortType::New, Some(inserted_community.id), None, 10).unwrap();
+    let read_post_listings_with_user = PostView::list(&conn, PostListingType::Community, &SortType::New, Some(inserted_community.id), None, Some(inserted_user.id), 10).unwrap();
+    let read_post_listings_no_user = PostView::list(&conn, PostListingType::Community, &SortType::New, Some(inserted_community.id), None, None, 10).unwrap();
     let read_post_listing_no_user = PostView::read(&conn, inserted_post.id, None).unwrap();
     let read_post_listing_with_user = PostView::read(&conn, inserted_post.id, Some(inserted_user.id)).unwrap();