Skip to content

Commit

Permalink
Fix failing writes in test suite.
Browse files Browse the repository at this point in the history
  • Loading branch information
toddboom committed Dec 22, 2014
1 parent 4a05656 commit 2ded879
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions integration/single_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -894,8 +894,8 @@ func (self *SingleServerSuite) TestShardSpaceRegex(c *C) {
[
{
"name": "metric.foobar",
"columns": ["time", "val"],
"points":[[1307997668000, 1]]
"columns": ["val"],
"points":[[1]]
}
]`, c)
spaces, err := client.GetShardSpaces()
Expand All @@ -913,8 +913,8 @@ func (self *SingleServerSuite) TestCreateShardSpace(c *C) {
[
{
"name": "test_create_shard_space",
"columns": ["time", "val"],
"points":[[1307997668000, 1]]
"columns": ["val"],
"points":[[1]]
}
]`, c)
client := self.server.GetClient("", c)
Expand All @@ -931,8 +931,8 @@ func (self *SingleServerSuite) TestCreateShardSpace(c *C) {
[
{
"name": "the_dude_abides",
"columns": ["time", "val"],
"points":[[1307997668000, 1]]
"columns": ["val"],
"points":[[1]]
}
]`, c)
spaces, err = client.GetShardSpaces()
Expand Down

0 comments on commit 2ded879

Please sign in to comment.