Skip to content

Commit

Permalink
#16 refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ramabit committed Jan 22, 2016
1 parent e1aced3 commit bb30ff7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class BlocksInsideTest extends AndroidTestCase {

@UiThreadTest
public void testLibraryWithBlocks() {
new ExampleAllTogether();
new ExampleBlocksInside();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class RefactorBlocksTest extends AndroidTestCase {

@UiThreadTest
public void testLibraryFunctionsRefactor() {
new ExampleFunctionsRefactor();
new ExampleBlocksRefactor();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import java.util.concurrent.CountDownLatch
/**
* Created by inaka on 1/20/16.
*/
private class ExampleAllTogether {
private class ExampleBlocksInside {
val signal = CountDownLatch(1);

init {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import java.util.concurrent.CountDownLatch
/**
* Created by inaka on 1/21/16.
*/
private class ExampleFunctionsRefactor {
private class ExampleBlocksRefactor {
val signal = CountDownLatch(1);

// onSuccess function
Expand Down

0 comments on commit bb30ff7

Please sign in to comment.