mirror of
https://codeberg.org/JasterV/test-context.git
synced 2026-04-26 18:10:06 +00:00
Merge pull request #5 from markhildreth/fixed-typo
Fixed typo in documentation
This commit is contained in:
commit
c791dd078e
2 changed files with 4 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ impl AsyncTestContext for MyAsyncContext {
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn teardown(self) {
|
async fn teardown(self) {
|
||||||
// Perform any teradown you wish.
|
// Perform any teardown you wish.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -54,3 +54,5 @@ async fn test_works(ctx: &mut MyAsyncContext) {
|
||||||
assert_eq!(ctx.value, "Hello, World!");
|
assert_eq!(ctx.value, "Hello, World!");
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@
|
||||||
//! }
|
//! }
|
||||||
//!
|
//!
|
||||||
//! async fn teardown(self) {
|
//! async fn teardown(self) {
|
||||||
//! // Perform any teradown you wish.
|
//! // Perform any teardown you wish.
|
||||||
//! }
|
//! }
|
||||||
//! }
|
//! }
|
||||||
//!
|
//!
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue