File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/com/assertthat/selenium_shutterbug/utils Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public static String getJsScript(String filePath) {
2424 try {
2525 InputStream is = Thread .currentThread ().getContextClassLoader ().getResourceAsStream (filePath );
2626 if (is == null ) {
27- // This is needed to load the files in an OSGI enviroment when enclosed in a bundle
27+ // This is needed to load the files in an OSGI environment when enclosed in a bundle
2828 is = FileUtil .class .getClassLoader ().getResourceAsStream (filePath );
2929 }
3030 // if the input stream is still null, this will avoid a non descriptive null pointer exception
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public Double getDevicePixelRatio() {
7171 return devicePixelRatio ;
7272 }
7373
74- public static void wait (int milis ) {
74+ public static void wait (int ms ) {
7575 try {
7676 Thread .sleep (milis );
7777 } catch (InterruptedException e ) {
You can’t perform that action at this time.
0 commit comments