Skip to content

Commit

Permalink
cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuker committed Oct 9, 2015
1 parent cc5d24c commit 1f5bc51
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
17 changes: 11 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,24 @@
</build>

<dependencies>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.7.2</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.7.2</version>
<type>jar</type>
<scope>compile</scope>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
8 changes: 0 additions & 8 deletions src/test/java/rtalk/RTalkTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,6 @@ public void setup() {
}
}

@Test
// @Ignore
public void testPut() throws Exception {
RTalk rt = new RTalk(jedisPool);
rt.put(1, 0, 0, "{videoUrl: 'http://localhost/Dropbox/MyVideos/GOPR3207.MP4_', videoId: '4243'}");
rt.put(0, 0, 0, "{videoUrl: 'http://localhost/Dropbox/MyVideos/GOPR3207.MP4', videoId: '4242'}");
}

@Test
public void testPutTimeoutTTR() throws Exception {
RTalk rt = new RTalk(jedisPool);
Expand Down

0 comments on commit 1f5bc51

Please sign in to comment.