diff options
| author | Brian Anderson <[email protected]> | 2011-05-02 20:53:18 -0400 |
|---|---|---|
| committer | Brian Anderson <[email protected]> | 2011-05-02 20:56:46 -0400 |
| commit | 2fc58fc6a070b44bc6a7d2629d7d6eb1d074b9fb (patch) | |
| tree | 519e40df6f373be9dd4e67ad32ec88a436789ab4 | |
| parent | Add stage1, stage2 to Makefile.in default target, so tinderboxes notice break... (diff) | |
| download | rust-2fc58fc6a070b44bc6a7d2629d7d6eb1d074b9fb.tar.xz rust-2fc58fc6a070b44bc6a7d2629d7d6eb1d074b9fb.zip | |
Revert "Use check instead of assert in export-unexported-dep"
This reverts commit 480eda0f10fabd6e76a30c91df1d84740d6f81cc. The commit
adding the assert keyword has been restored.
| -rw-r--r-- | src/test/run-pass/export-unexported-dep.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/export-unexported-dep.rs b/src/test/run-pass/export-unexported-dep.rs index 41a8cb98..94ef5241 100644 --- a/src/test/run-pass/export-unexported-dep.rs +++ b/src/test/run-pass/export-unexported-dep.rs @@ -15,7 +15,7 @@ mod foo { } fn g(t v) { - check (v == t1); + assert v == t1; } } |