We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c96aef0 commit b9bae09Copy full SHA for b9bae09
lib/src/cache.rs
@@ -248,11 +248,13 @@ mod tests {
248
fn nontransactional_insert_lookup(key in any::<CacheKey>(), value in any::<Vec<u8>>()) {
249
let cache = Cache::default();
250
251
+ // We can't use tokio::test and proptest! together; both alter the signature of the
252
+ // test function, and are not aware of each other enough for it to pass.
253
let rt = tokio::runtime::Builder::new_current_thread().build().unwrap();
254
rt.block_on(async {
255
let empty = cache.lookup(&key).await;
256
assert!(empty.found().is_none());
- // TODO: cceckman -- check GoGet
257
+ // TODO: cceckman-at-fastly -- check GoGet
258
259
cache.insert(&key, value.clone().into()).await;
260
0 commit comments