File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/com/nordstrom/common/file Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ public void testPrivateConstructor() throws Throwable {
5252
5353 Constructor <?>[] ctors ;
5454 ctors = PathUtils .class .getDeclaredConstructors ();
55- assertEquals (ctors .length , 1 , "GridUtility must have exactly one constructor" );
55+ assertEquals (ctors .length , 1 , "PathUtils must have exactly one constructor" );
5656 assertEquals (ctors [0 ].getModifiers () & Modifier .PRIVATE , Modifier .PRIVATE ,
57- "GridUtility constructor must be private" );
58- assertEquals (ctors [0 ].getParameterTypes ().length , 0 , "GridUtility constructor must have no arguments" );
57+ "PathUtils constructor must be private" );
58+ assertEquals (ctors [0 ].getParameterTypes ().length , 0 , "PathUtils constructor must have no arguments" );
5959
6060 try {
6161 ctors [0 ].setAccessible (true );
You can’t perform that action at this time.
0 commit comments