Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix deprecations
  • Loading branch information
jaredsburrows committed Jul 20, 2016
1 parent 4d34bf9 commit 6f016ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Robolectric is a testing framework that de-fangs the Android SDK so you can test
Here's an example of a simple test written using Robolectric:

```java
@RunWith(RobolectricGradleTestRunner.class)
@RunWith(RobolectricTestRunner.class)
@Config(constants = BuildConfig.class)
public class MyActivityTest {

Expand Down Expand Up @@ -37,7 +37,7 @@ If you'd like to start a new project with Robolectric tests you can refer to `de
### Gradle

```groovy
testCompile "org.robolectric:robolectric:3.1"
testCompile "org.robolectric:robolectric:3.1.1"
```

### Maven
Expand All @@ -46,7 +46,7 @@ testCompile "org.robolectric:robolectric:3.1"
<dependency>
<groupId>org.robolectric</groupId>
<artifactId>robolectric</artifactId>
<version>3.1</version>
<version>3.1.1</version>
<scope>test</scope>
</dependency>
```
Expand Down

0 comments on commit 6f016ec

Please sign in to comment.