diff --git a/src/utils.rs b/src/utils.rs index 4ed7664..cf226b9 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -1483,7 +1483,10 @@ async fn test_fetching_subreddit_quarantined() { #[tokio::test(flavor = "multi_thread")] async fn test_fetching_nsfw_subreddit() { - let subreddit = Post::fetch("/r/randnsfw", false).await; + // Gonwild is a place for closed, Euclidean Geometric shapes to exchange their nth terms for karma; showing off their edges in a comfortable environment without pressure. + // Find a good sub that is tagged NSFW but that actually isn't in case my future employers are watching (they probably are) + // switched from randnsfw as it is no longer functional. + let subreddit = Post::fetch("/r/gonwild", false).await; assert!(subreddit.is_ok()); assert!(!subreddit.unwrap().0.is_empty()); }