diff --git a/doc/go1.15.html b/doc/go1.15.html index 90baedd916..79b18a3720 100644 --- a/doc/go1.15.html +++ b/doc/go1.15.html @@ -228,22 +228,6 @@ TODO TODO
-
- The testing.T type now has a Deadline method
- that reports the time at which the test binary will have exceeded its
- timeout.
-
- A TestMain function is no longer required to call
- os.Exit. If a TestMain function returns,
- the test binary will call os.Exit with the value returned
- by m.Run.
-
@@ -448,6 +432,20 @@ TODO
+ The testing.T type now has a
+ Deadline method
+ that reports the time at which the test binary will have exceeded its
+ timeout.
+
+ A TestMain function is no longer required to call
+ os.Exit. If a TestMain function returns,
+ the test binary will call os.Exit with the value returned
+ by m.Run.
+
The new methods
T.TempDir and