Fix user-facing and non-user-facing typos
Found via `codespell v2.1.dev0`
This commit is contained in:
parent
37a97ac470
commit
e1c3e59ee8
116 changed files with 233 additions and 233 deletions
|
|
@ -219,7 +219,7 @@ public class TestBasic extends TestCase
|
|||
e.printStackTrace();
|
||||
}
|
||||
|
||||
assertTrue( "caught no expection", (caught != null) );
|
||||
assertTrue( "caught no exception", (caught != null) );
|
||||
assertTrue( "exception should say stream is stopped", caught
|
||||
.getMessage().contains( "stopped" ) );
|
||||
|
||||
|
|
@ -233,7 +233,7 @@ public class TestBasic extends TestCase
|
|||
caught = e;
|
||||
e.printStackTrace();
|
||||
}
|
||||
assertTrue( "caught no expection", (caught != null) );
|
||||
assertTrue( "caught no exception", (caught != null) );
|
||||
assertTrue( "exception should say stream is stopped", caught
|
||||
.getMessage().contains( "null" ) );
|
||||
|
||||
|
|
@ -251,7 +251,7 @@ public class TestBasic extends TestCase
|
|||
e.printStackTrace();
|
||||
}
|
||||
|
||||
assertTrue( "caught no expection", (caught != null) );
|
||||
assertTrue( "caught no exception", (caught != null) );
|
||||
assertTrue( "exception should say tried to", caught.getMessage()
|
||||
.contains( "Tried to write short" ) );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue