Skip to content

Commit

Permalink
Fix broken test in ContentAssertionTests
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrannen committed Jan 15, 2013
1 parent b2d6596 commit 33ee0ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void testContentType() throws Exception {
this.mockMvc.perform(get("/handleUtf8"))
.andExpect(content().contentType(MediaType.valueOf("text/plain;charset=UTF-8")))
.andExpect(content().contentType("text/plain;charset=UTF-8"))
.andExpect(content().contentTypeCompatibleWith("text/plan"))
.andExpect(content().contentTypeCompatibleWith("text/plain"))
.andExpect(content().contentTypeCompatibleWith(MediaType.TEXT_PLAIN));
}

Expand Down

0 comments on commit 33ee0ea

Please sign in to comment.