(t *testing.T)
| 2070 | } |
| 2071 | |
| 2072 | func TestDoubleOrder(t *testing.T) { |
| 2073 | |
| 2074 | query := ` |
| 2075 | { |
| 2076 | me(func: uid(1)) { |
| 2077 | friend(orderdesc: dob) @facets(orderasc: weight) |
| 2078 | } |
| 2079 | } |
| 2080 | ` |
| 2081 | _, err := processQuery(context.Background(), t, query) |
| 2082 | require.Error(t, err) |
| 2083 | } |
| 2084 | |
| 2085 | func TestVarInAggError(t *testing.T) { |
| 2086 |
nothing calls this directly
no test coverage detected