Skip to content

Commit

Permalink
Fix pgsql tests (#160)
Browse files Browse the repository at this point in the history
* Fix pgsql tests
  • Loading branch information
karatakis authored Dec 14, 2023
1 parent 8e1eece commit 812ba6c
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions examples/postgres/tests/query_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ async fn test_complex_filter_with_pagination() {
"nodes": [
{
"paymentId": 8272,
"amount": "11.9900"
"amount": "11.99"
},
{
"paymentId": 9803,
"amount": "11.9900"
"amount": "11.99"
}
],
"paginationInfo": {
Expand Down Expand Up @@ -244,7 +244,7 @@ async fn test_cursor_pagination() {
{
"node": {
"paymentId": 342,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "KAREN"
}
Expand All @@ -253,7 +253,7 @@ async fn test_cursor_pagination() {
{
"node": {
"paymentId": 3146,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "VICTORIA"
}
Expand All @@ -262,7 +262,7 @@ async fn test_cursor_pagination() {
{
"node": {
"paymentId": 5280,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "VANESSA"
}
Expand All @@ -271,7 +271,7 @@ async fn test_cursor_pagination() {
{
"node": {
"paymentId": 5281,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "ALMA"
}
Expand All @@ -280,7 +280,7 @@ async fn test_cursor_pagination() {
{
"node": {
"paymentId": 5550,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "ROSEMARY"
}
Expand Down Expand Up @@ -339,7 +339,7 @@ async fn test_cursor_pagination_prev() {
{
"node": {
"paymentId": 6409,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "TANYA"
}
Expand All @@ -348,7 +348,7 @@ async fn test_cursor_pagination_prev() {
{
"node": {
"paymentId": 8272,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "RICHARD"
}
Expand All @@ -357,7 +357,7 @@ async fn test_cursor_pagination_prev() {
{
"node": {
"paymentId": 9803,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "NICHOLAS"
}
Expand Down Expand Up @@ -416,7 +416,7 @@ async fn test_cursor_pagination_no_next() {
{
"node": {
"paymentId": 15821,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "KENT"
}
Expand All @@ -425,7 +425,7 @@ async fn test_cursor_pagination_no_next() {
{
"node": {
"paymentId": 15850,
"amount": "11.9900",
"amount": "11.99",
"customer": {
"firstName": "TERRANCE"
}
Expand Down Expand Up @@ -566,7 +566,7 @@ async fn related_queries_filters() {
"nodes": [
{
"paymentId": 8547,
"amount": "9.9900"
"amount": "9.99"
}
]
}
Expand All @@ -582,7 +582,7 @@ async fn related_queries_filters() {
"nodes": [
{
"paymentId": 9945,
"amount": "9.9900"
"amount": "9.99"
}
]
}
Expand All @@ -598,7 +598,7 @@ async fn related_queries_filters() {
"nodes": [
{
"paymentId": 10998,
"amount": "8.9900"
"amount": "8.99"
}
]
}
Expand Down Expand Up @@ -760,7 +760,7 @@ async fn related_queries_pagination() {
"nodes": [
{
"paymentId": 8547,
"amount": "9.9900"
"amount": "9.99"
}
],
"paginationInfo": {
Expand All @@ -784,7 +784,7 @@ async fn related_queries_pagination() {
"nodes": [
{
"paymentId": 9972,
"amount": "7.9900"
"amount": "7.99"
}
],
"paginationInfo": {
Expand All @@ -808,7 +808,7 @@ async fn related_queries_pagination() {
"nodes": [
{
"paymentId": 10989,
"amount": "7.9900"
"amount": "7.99"
}
],
"paginationInfo": {
Expand Down

0 comments on commit 812ba6c

Please sign in to comment.