From bd599d902223abf8006068e3ee98650f2dbc488a Mon Sep 17 00:00:00 2001 From: Andrew Rosenfeld Date: Sat, 23 Apr 2022 22:09:07 +0100 Subject: [PATCH] Fix #3002 use noplayground with common.rs --- src/ch11-03-test-organization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch11-03-test-organization.md b/src/ch11-03-test-organization.md index e1f62c31bb..b167c348b6 100644 --- a/src/ch11-03-test-organization.md +++ b/src/ch11-03-test-organization.md @@ -162,7 +162,7 @@ we want to call from multiple test functions in multiple test files: Filename: tests/common.rs -```rust +```rust,noplayground {{#rustdoc_include ../listings/ch11-writing-automated-tests/no-listing-12-shared-test-code-problem/tests/common.rs}} ```